-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.07 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
{
"name": "my-webpack-project",
"version": "1.0.0",
"main": "index.js",
"author": "Logan Blangenois <[email protected]>",
"contributors": [
"Thomas Hellin <[email protected]>"
],
"license": "MIT",
"devDependencies": {
"@webpack-cli/generators": "^3.0.7",
"autoprefixer": "^10.4.14",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"mini-css-extract-plugin": "^2.7.6",
"postcss": "^8.4.26",
"postcss-loader": "^7.3.3",
"prettier": "^3.0.0",
"rimraf": "^5.0.1",
"sass": "^1.63.6",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"tailwindcss": "^3.3.3",
"terser-webpack-plugin": "^5.3.9",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
"uglify-js": "^3.17.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
},
"description": "My webpack project",
"scripts": {
"build": "yarn clean && webpack --mode=production --node-env=production",
"build:dev": "webpack --mode=development",
"build:prod": "webpack --mode=production --node-env=production",
"watch": "webpack --watch",
"clean": "rimraf dist"
}
}