-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 2.01 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "boiler-plate-jq",
"version": "1.1.0",
"description": "",
"config": {
"dir": "./bin"
},
"scripts": {
"build-html": "$npm_package_config_dir/build_html.sh",
"build-css": "$npm_package_config_dir/build_css.sh",
"build-img": "$npm_package_config_dir/build_img.sh",
"build-static": "$npm_package_config_dir/build_static.sh",
"build-js": "$npm_package_config_dir/build_js.sh",
"browsersync": "browser-sync start -s ./dist/ -f ./dist/ --port 3004",
"clean": "rimraf ./dist",
"start": "yarn clean && WATCH=true npm-run-all -p build-* && yarn browsersync",
"dev": "yarn clean && MODE=dev yarn npm-run-all -p build-*",
"build": "yarn clean && npm-run-all -p build-*"
},
"repository": {
"type": "git",
"url": "https://github.com/komacchi/boiler-plate-jq.git"
},
"bugs": "https://github.com/komacchi/boiler-plate-jq/issues",
"author": "komacchi",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"autoprefixer": "^9.3.1",
"babel-loader": "^8.0.4",
"browser-sync": "^2.26.3",
"cpx": "^1.5.0",
"css-mqpacker": "^7.0.0",
"csswring": "^7.0.0",
"eslint": "^5.8.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"htmlhint": "^0.10.1",
"npm-run-all": "^4.1.5",
"postcss-calc": "^7.0.1",
"postcss-cli": "^6.0.1",
"postcss-color-function": "^4.0.1",
"postcss-comment": "^2.0.0",
"postcss-import": "^12.0.1",
"postcss-mixins": "^6.2.0",
"postcss-nested": "^4.1.0",
"postcss-simple-vars": "^5.0.1",
"pug": "^2.0.3",
"pug-cli": "^1.0.0-alpha6",
"rimraf": "^2.6.2",
"stylelint": "^9.7.0",
"stylelint-config-standard": "^18.2.0",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"promise": "^8.0.2"
}
}