-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.16 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
{
"browserslist": [
">= 1%",
"last 1 major version",
"not dead",
"Chrome >= 45",
"Firefox >= 38",
"Edge >= 12",
"Explorer >= 10",
"iOS >= 9",
"Safari >= 9",
"Android >= 4.4",
"Opera >= 30"
],
"scripts": {
"build-scss": "node .github/scripts/build-scss.js",
"build-css": "npx postcss 'build/package/**/css/!(*.min).css' --ext '.min.css' --base build/ --no-map -d build/",
"build-js": "node .github/scripts/build-js.js",
"build-templates": "node .github/scripts/build-templates.js",
"build": "npm run build-scss && npm run build-css && npm run build-js && npm run build-templates",
"build-dev": "npm run build && npm run lint-scss && npm run lint-css",
"lint-scss": "npx stylelint '**/*.scss' --fix",
"lint-css": "npx stylelint '**/*.css' --fix"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"cssnano": "^7.0.1",
"glob": "^11.0.0",
"postcss": "^8.4.4",
"postcss-cli": "^11.0.0",
"postcss-import": "^16.0.0",
"postcss-scss": "^4.0.2",
"sass-embedded": "^1.83.1",
"stylelint": "^16.12.0",
"stylelint-config-standard-scss": "^14.0.0",
"stylelint-order": "^6.0.1",
"stylelint-scss": "^6.10.0",
"uglify-js": "^3.14.5"
}
}