-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.81 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "avorion-goods",
"version": "1.0.0-SNAPSHOT",
"private": true,
"description": "",
"repository": {
"type": "git",
"url": ""
},
"license": "FREE",
"scripts": {
"check-types": "tsc --watch",
"build": "webpack --mode=development",
"watch": "webpack --watch --mode=development --noCssOptimization --notify --progress",
"l": "webpack-dev-server --watch --progress --mode=development --noCssOptimization",
"build-dev": "webpack --env.development --mode=development",
"build-prod": "webpack --env.production --mode=production"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8",
"@babel/plugin-proposal-object-rest-spread": "^7.13.8",
"@babel/plugin-proposal-optional-chaining": "^7.13.8",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@babel/preset-typescript": "^7.13.0",
"@types/classnames": "^2.2.11",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/node": "^14.14.35",
"@types/optimize-css-assets-webpack-plugin": "^5.0.2",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.2",
"@types/react-router-dom": "^5.1.7",
"@types/terser-webpack-plugin": "^5.0.2",
"@types/webpack": "^4.41.26",
"@types/webpack-merge-and-include-globally": "^2.1.0",
"autoprefixer": "^10.2.5",
"babel-loader": "^8.2.2",
"css-loader": "^5.1.3",
"cssnano": "^4.1.10",
"dotenv": "^8.2.0",
"fs": "0.0.1-security",
"glob": "^7.1.6",
"html-webpack-harddisk-plugin": "^2.0.0",
"html-webpack-plugin": "^5.3.1",
"mini-css-extract-plugin": "^1.3.9",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^5.2.0",
"postcss-modules-values": "^4.0.0",
"postcss-scss": "^3.0.5",
"prettier": "^2.2.1",
"sass": "^1.32.8",
"sass-loader": "^11.0.1",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.0.18",
"ts-node": "^9.1.1",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.2.3",
"webpack": "^5.26.3",
"webpack-bundle-analyzer": "^4.4.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.2",
"webpack-merge-and-include-globally": "^2.3.4",
"webpack-runtime-analyzer": "^1.5.0"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router-dom": "^5.2.0"
},
"prettier": {
"printWidth": 180,
"tabWidth": 4,
"trailingComma": "es5",
"bracketSpacing": false
},
"browserslist": [
"last 2 versions",
"Safari >= 8",
"ie >= 11",
"Firefox >= 51"
]
}