-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 907 Bytes
/
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
{
"name": "the-matrix-reloaded",
"version": "1.0.0",
"description": "",
"private": true,
"devDependencies": {
"@types/web": "^0.0.80",
"copy-webpack-plugin": "^11.0.0",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.4.1",
"typescript": "^4.9.3",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.0",
"webpack-dev-server": "^4.11.1"
},
"scripts": {
"clear": "cls",
"build:dev": "webpack --config webpack.config.dev.js",
"build:prod": "webpack --config webpack.config.prod.js",
"watch": "webpack --watch --config webpack.config.prod.js",
"start": "webpack serve --open --config webpack.config.prod.js",
"pack": "powershell.exe Compress-Archive \"dist/*\" \"dist/TheMatrixReloaded.zip\" -CompressionLevel Optimal;",
"pack:prod": "npm run clear & npm run build:prod & npm run pack"
},
"keywords": [],
"author": "",
"license": "ISC"
}