-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.13 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
{
"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 <[email protected]> (https://flaircore.com/)",
"license": "MIT",
"scripts": {
"build-dev": "webpack",
"watch": "webpack --watch --progress",
"build": "cross-env NODE_ENV=production webpack"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/plugin-transform-runtime": "^7.19.6",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.5",
"cross-env": "^7.0.3",
"css-loader": "^6.7.1",
"mini-css-extract-plugin": "^2.6.0",
"postcss": "^8.4.12",
"postcss-loader": "^6.2.1",
"postcss-preset-env": "^7.4.3",
"sass": "^1.49.11",
"sass-loader": "^12.6.0",
"webpack": "^5.72.1",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"@babel/runtime": "^7.20.13",
"axios": "^1.3.1",
"core-js": "^3.22.4",
"jquery": "^3.6.3"
}
}