-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 925 Bytes
/
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": "lesson02",
"version": "1.0.0",
"description": "",
"main": "bundle.js",
"scripts": {
"build": "npm run format && webpack --mode production",
"watch": "webpack --watch --mode development",
"format": "prettier --write {src/js/*.js,src/scss/*.scss,index.html}",
"start": "node server.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,json,scss,css,md,html}": [
"prettier --write",
"git add"
]
},
"author": "",
"license": "ISC",
"devDependencies": {
"css-loader": "^2.1.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"husky": "^1.3.1",
"lint-staged": "^8.1.4",
"node-sass": "^4.11.0",
"prettier": "^1.16.4",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
},
"dependencies": {
"express": "^4.16.4"
}
}