-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 937 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
{
"name": "js-study",
"version": "1.0.0",
"description": "用于记录日常js的学习",
"main": "index.js",
"scripts": {
"build": "webpack",
"prepare": "husky install",
"start": "npx webpack & webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/weiblank/js-study.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/weiblank/js-study/issues"
},
"homepage": "https://github.com/weiblank/js-study#readme",
"dependencies": {
"html-webpack-plugin": "^5.5.0",
"webpack": "^5.76.1"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"css-loader": "^6.7.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.6",
"style-loader": "^3.3.2",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.1"
}
}