-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.32 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
{
"name": "files",
"version": "1.0.0",
"scripts": {
"start": "npm run webpack & npm run sass & npm run pug & npm run copy & npm run server",
"webpack": "webpack -w --mode production",
"eslint": "eslint --fix ./src/webpack; exit 0",
"pug": "pug ./src/pug -wo ./public",
"sass": "node-sass ./src/scss -o ./public/css && node-sass ./src/scss -wo ./public/css",
"server": "browser-sync start --server ./public",
"deploy": "gh-pages -b gh-pages -d public"
},
"author": "kzhrk",
"license": "MIT",
"devDependencies": {
"animejs": "^2.2.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.4",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"browser-sync": "^2.23.6",
"eslint": "^4.18.1",
"eslint-config-prettier": "^2.9.0",
"eslint-plugin-prettier": "^2.6.0",
"gh-pages": "^1.1.0",
"node-sass": "^4.8.3",
"prettier": "^1.11.0",
"pug-cli": "^1.0.0-alpha6",
"reset-css": "^3.0.0",
"uglifyjs-webpack-plugin": "^1.2.2",
"webpack": "^4.0.1",
"webpack-cli": "^2.0.9"
}
}