-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.56 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"//": "Put here only devDependencies, theme dependencies should stay inside of the theme folder.",
"name": "camcomskin.padova",
"version": "0.1.0",
"keywords": [
"agid",
"redturtle",
"theme"
],
"author": "RedTurtle Technology",
"license": "GPL-2.0",
"devDependencies": {
"@redturtle/eslint-config": "^1.2.0",
"autoprefixer": "^8.0.0",
"cssnano": "^3.10.0",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-flowtype": "^2.46.1",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"grunt": "^1.0.2",
"grunt-contrib-uglify": "^3.3.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-postcss": "^0.9.0",
"grunt-sass": "^2.1.0",
"husky": "^1.0.1",
"lint-staged": "^7.3.0",
"load-grunt-tasks": "^3.5.2",
"pixrem": "^4.0.1",
"postcss-flexbugs-fixes": "^3.3.0",
"prettier": "^1.11.0",
"stylelint": "^9.1.1",
"stylelint-config-recommended": "^2.1.0"
},
"scripts": {
"prettier-all": "prettier --write 'camcomskin/padova/browser/stylesheets/sass/**/*.scss'",
"precommit": "lint-staged",
"predevelop": "grunt compile",
"develop": "grunt",
"build": "grunt compile"
},
"stylelint": {
"extends": "stylelint-config-recommended",
"rules": {
"at-rule-no-unknown": [
true,
{
"ignoreAtRules": [
"extends",
"include",
"mixin"
]
}
]
}
},
"lint-staged": {
"*.{js,json,css}": [
"prettier --write",
"git add"
]
}
}