-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
46 lines (46 loc) · 2.1 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
{
"dependencies": {
"stylelint": "^9.2.1",
"stylelint-checkstyle-formatter": "^0.1.1",
"stylelint-config-standard": "^18.2.0",
"stylelint-no-browser-hacks": "^1.2.1"
},
"scripts": {
"build:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-build.js",
"build:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ../scripts/js/babel-es6-build.js",
"watch:js": "cross-env BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js",
"watch:js-dev": "cross-env NODE_ENV=development BABEL_ENV=legacy node ./scripts/js/babel-es6-watch.js",
"lint:js": "node ./node_modules/eslint/bin/eslint.js .",
"lint:js-passing": "node ./node_modules/eslint/bin/eslint.js --quiet --config=.eslintrc.passing.json .",
"lint:js-stats": "node ./node_modules/eslint/bin/eslint.js --format=./scripts/js/eslint-stats-by-type.js .",
"lint:css": "stylelint \"css/src/**/*.css\"",
"lint:css-checkstyle": "stylelint \"css/src/**/*.css\" --custom-formatter ./node_modules/stylelint-checkstyle-formatter/index.js",
"build:css": "cross-env NODE_ENV=production ./node_modules/.bin/postcss \"css/src\" --dir \"css/dist\" --base \"css/src\"",
"build:css-dev": "cross-env NODE_ENV=development ./node_modules/.bin/postcss \"css/src\" --dir \"css/dist\" --base \"css/src\"",
"watch:css": "cross-env NODE_ENV=production ./node_modules/.bin/postcss \"css/src\" --dir \"css/dist\" --base \"css/src\" --watch",
"watch:css-dev": "cross-env NODE_ENV=development ./node_modules/.bin/postcss \"css/src\" --dir \"css/dist\" --base \"css/src\" --watch"
},
"browserslist": [
"last 2 versions",
"not dead",
"cover 95%",
"ie >= 9",
"edge >= 13",
"firefox >= 16",
"opera >= 15",
"safari >= 5",
"chrome >= 56"
],
"devDependencies": {
"autoprefixer": "^8.0.0",
"babel-core": "^6.26.3",
"cross-env": "^5.1.6",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.8.2",
"postcss-cli": "^6.0.1",
"postcss-custom-properties": "^8.0.8"
}
}