-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.09 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "webpack",
"version": "1.0.0",
"description": "base webpack setup",
"main": "index.js",
"scripts": {
"watch": "start npm run watch:js && start npm run watch:css",
"watch:js": "webpack --config webpack/dev.script.config.js --mode development --watch",
"watch:css": "webpack --config webpack/dev.style.config.js --mode development --watch",
"build": "npm run build:js && npm run build:css",
"build:js": "webpack --config webpack/prod.script.config.js --mode production",
"build:css": "webpack --config webpack/prod.style.config.js --mode production"
},
"repository": {
"type": "git",
"url": "https://github.com/Cysword/webpack"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Cysword/webpack/issues"
},
"homepage": "https://github.com/Cysword/webpack#readme",
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-optional-chaining": "^7.12.7",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"autoprefixer": "^10.1.0",
"babel-loader": "^8.2.2",
"babel-plugin-dynamic-import-webpack": "^1.1.0",
"babel-plugin-lodash": "^3.3.4",
"case-sensitive-paths-webpack-plugin": "^2.3.0",
"core-js": "^3.12.1",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^2.0.0",
"cssnano": "^5.0.2",
"eslint": "^7.15.0",
"eslint-import-resolver-webpack": "^0.13.0",
"filemanager-webpack-plugin": "^5.0.0",
"glob": "^7.1.6",
"js-yaml-loader": "^1.2.2",
"mini-css-extract-plugin": "^1.3.3",
"node-sass": "^6.0.0",
"postcss": "^8.2.1",
"postcss-custom-properties": "^11.0.0",
"postcss-import": "^14.0.0",
"postcss-loader": "^5.2.0",
"postcss-nested": "^5.0.3",
"postcss-scss": "^3.0.4",
"sass-loader": "^11.1.0",
"sass-resources-loader": "^2.1.1",
"style-loader": "^2.0.0",
"svg-inline-loader": "^0.8.2",
"ts-loader": "^9.1.2",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-manifest-plugin": "^3.0.0"
}
}