-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.35 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.35 KB
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
{
"scripts": {
"postinstall": "yarn setup && yarn compile-sass && yarn compile-js",
"setup": "cp -r ./node_modules/atomic-package ./assets/ && yarn font:link",
"font:link": "cp -r ./assets/atomic-package/dist/font ./font",
"compile-sass": "make-dir css && yarn sass",
"sass": "sass scss/atomic-package-docs.scss css/theme.css && yarn autoprefixer",
"watch:sass": "watch 'npm run sass' scss",
"autoprefixer": "postcss --use autoprefixer --no-map css/theme.css -d css/",
"compile-js": "./node_modules/.bin/webpack -p",
"dev": "concurrently \"webpack -p -w\" \"yarn watch:sass\""
},
"browserslist": [
"last 2 versions",
"Android >= 4",
"iOS >= 9"
],
"license": "UNLICENSED",
"private": true,
"devDependencies": {
"atomic-package": "^0.4.5",
"autoprefixer": "^10.4.22",
"buble": "^0.20.0",
"buble-loader": "^0.5.1",
"concurrently": "^9.2.1",
"eslint": "^8.57.1",
"eslint-plugin-vue": "^9.31.0",
"make-dir-cli": "^4.0.0",
"sass": "^1.83.0",
"node-sass-import": "^2.0.1",
"postcss": "^8.5.6",
"postcss-cli": "^11.0.1",
"symlink-dir": "^9.0.0",
"uikit": "3.3.7",
"uniqid": "^5.4.0",
"vue-loader": "^15.11.1",
"vue-template-compiler": "^2.7.16",
"watch": "^1.0.2",
"watchify": "^4.0.0",
"webpack": "^4.47.0",
"webpack-cli": "^3.3.12"
}
}