forked from rad73/ZettaCMS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.2 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
{
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-decorators": "^7.1.2",
"@babel/preset-react": "^7.0.0",
"@babel/preset-stage-2": "^7.0.0",
"@symfony/webpack-encore": "^0.23",
"autoprefixer": "^8.6.0",
"node-sass": "^4.9.0",
"postcss-loader": "^3",
"sass-loader": "^7.0.2",
"stylelint": "^9.2.0",
"stylelint-config-sass-guidelines": "^5.0.0"
},
"scripts": {
"watch": "encore dev --watch",
"build": "encore production"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"prop-types": "^15.6.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"select2": "^4.0.6-rc.1",
"stylelint-webpack-plugin": "^0.10.5",
"whatwg-fetch": "^2.0.4"
},
"stylelint": {
"extends": "stylelint-config-sass-guidelines",
"rules": {
"indentation": 4,
"scss/at-extend-no-missing-placeholder": null,
"max-nesting-depth": 6,
"selector-no-qualifying-type": null,
"selector-max-compound-selectors": 6,
"selector-max-id": 1
}
}
}