-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.35 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"description": "My webpack project",
"private": true,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"build": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"serve": "webpack serve"
},
"author": "",
"license": "ISC",
"dependencies": {
"all": "^0.0.0",
"autoprefixer": "^10.4.4",
"file-loader": "^6.2.0",
"jquery": "^3.6.0",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"postcss": "^8.4.12",
"postcss-cli": "^9.1.0",
"sass": "^1.49.10",
"uglify-js": "^3.15.3",
"watch": "^1.0.2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@webpack-cli/generators": "^2.4.2",
"babel-loader": "^8.2.4",
"css-loader": "^6.7.1",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.6.0",
"postcss-loader": "^6.2.1",
"prettier": "^2.6.1",
"style-loader": "^3.3.1",
"stylus": "^0.57.0",
"stylus-loader": "^6.2.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4",
"workbox-webpack-plugin": "^6.5.2"
},
"resolutions": {
"graceful-fs": "^4.2.9"
}
}