-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 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
{
"name": "styleguide",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:harapeko/styleguide.git",
"author": "harapeko <[email protected]>",
"license": "MIT",
"devDependencies": {
"autoprefixer": "10.2.6",
"browser-sync": "2.27.4",
"coffee-loader": "3.0.0",
"coffeescript": "2.5.1",
"cssnano": "5.0.6",
"expose-loader": "3.0.0",
"jquery": "3.6.0",
"node-sass": "6.0.1",
"nucleus-styleguide": "1.1.1",
"postcss-cli": "8.3.1",
"stylelint": "13.13.1",
"stylelint-rscss": "0.4.0",
"watch": "1.0.2",
"webpack": "5.44.0"
},
"scripts": {
"cs": "yarn run css:scss && yarn run css:postcss",
"css:scss": "node-sass assets/scss/app.scss docs/css/app.css --source-map docs/css/app.css.map",
"css:postcss": "postcss -r docs/css/app.css -u autoprefixer cssnano",
"css:lint": "stylelint 'assets/scss/*.scss' --syntax scss",
"js": "webpack -- assets/js/coffee/*.coffee docs/js/bundle.js",
"guide": "nucleus --config config.nucleus.json",
"watch": "yarn run watch:js & yarn run watch:css & yarn run watch:guide & yarn run bs & yarn run watch:css:lint",
"watch:css": "watch 'yarn run cs' assets/scss/",
"watch:css:lint": "watch 'yarn run css:lint' assets/scss/",
"watch:js": "watch 'yarn run js' assets/js/coffee/",
"watch:guide": "watch 'yarn run guide' assets/scss/",
"bs": "browser-sync start --config bs-config.js",
"clean": "rm -fr docs/*",
"build": "yarn run cs && yarn run js && yarn run guide",
"test": "echo test"
},
"dependencies": {}
}