-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.16 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.16 KB
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
{
"name": "a_web",
"version": "1.0.0",
"description": "A webpack project to demonstrate better FE performance and developer experience",
"main": "index.js",
"keywords": [
"webpack",
"babel",
"polyfill",
"front end performance"
],
"repository": "https://github.com/flaircore/a_web.git",
"author": "Nickbahson <nijoba33@gmail.com> (https://flaircore.com/)",
"license": "MIT",
"scripts": {
"build-dev": "webpack",
"watch": "webpack --watch --progress",
"build": "cross-env NODE_ENV=production webpack"
},
"devDependencies": {
"@babel/core": "^7.28.4",
"@babel/preset-env": "^7.28.3",
"@popperjs/core": "^2.11.8",
"babel-loader": "^10.0.0",
"cross-env": "^10.0.0",
"css-loader": "^7.1.2",
"image-minimizer-webpack-plugin": "^4.1.4",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-loader": "^8.2.0",
"postcss-preset-env": "^10.3.1",
"sass": "^1.92.1",
"sass-loader": "^16.0.5",
"sharp": "^0.34.3",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
},
"dependencies": {
"bootstrap": "^5.1.3",
"chart.js": "^3.7.1",
"core-js": "^3.45.1"
}
}