-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.98 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
63
64
65
66
{
"name": "webpack",
"version": "1.0.0",
"description": "Webpack technology research project",
"main": "index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack --mode development",
"watch": "cross-env NODE_ENV=development webpack --mode development --watch",
"build": "cross-env NODE_ENV=production webpack --mode production",
"start": "cross-env NODE_ENV=development webpack serve --open",
"stats": "webpack --json > stats.json && webpack-bundle-analyzer stats.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Darnelo-Inc/webpack.git"
},
"keywords": [
"webpack",
"js",
"ts"
],
"author": "darnelo-inc <darnelo@inbox.ru>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Darnelo-Inc/webpack/issues"
},
"homepage": "https://github.com/Darnelo-Inc/webpack#readme",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/eslint-parser": "^7.5.4",
"@babel/preset-env": "^7.22.10",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.11",
"babel-loader": "^9.1.3",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"css-minimizer-webpack-plugin": "^5.0.1",
"csv-loader": "^3.0.5",
"eslint": "^8.48.0",
"eslint-webpack-plugin": "^4.0.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.3",
"less-loader": "^11.1.3",
"mini-css-extract-plugin": "^2.7.6",
"sass": "^1.66.1",
"sass-loader": "^13.3.2",
"style-loader": "^3.3.3",
"ts-loader": "^9.4.4",
"typescript": "^5.2.2",
"webpack": "^5.88.2",
"webpack-bundle-analyzer": "^4.9.0",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1",
"xml-loader": "^1.2.1"
},
"dependencies": {
"jquery": "^3.7.1",
"lodash": "^4.17.21",
"normalize.css": "^8.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"browserslist": "> 0.25%, not dead"
}