-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.26 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
{
"name": "shapez-mods",
"version": "0.0.0",
"author": "Даниїл Григор'єв <[email protected]>",
"license": "GPL-3.0-or-later",
"private": true,
"scripts": {
"build": "NODE_ENV=production webpack --config tools/webpack.config.js",
"watch": "NODE_ENV=development webpack --config tools/webpack.config.js --watch",
"clean": "rm -r build/",
"blueprint": "python tools/gen_blueprint.py"
},
"devDependencies": {
"@types/webpack-env": "^1.18.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"css-loader": "^6.7.3",
"eslint": "^8.31.0",
"html-loader": "^4.2.0",
"less-loader": "^11.1.0",
"markdown-loader": "^8.0.0",
"string-replace-loader": "^3.1.0",
"terser-webpack-plugin": "^5.3.6",
"to-string-loader": "^1.2.0",
"ts-loader": "^9.4.2",
"typescript": "^4.9.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"@codemirror/language": "^6.3.2",
"@codemirror/legacy-modes": "^6.3.1",
"@codemirror/state": "^6.2.0",
"codemirror": "^6.0.1",
"less": "^4.1.3",
"semver": "^7.3.8"
}
}