-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.5 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
{
"name": "minecraft-web-viewer",
"version": "0.1.0",
"description": "",
"homepage": "https://www.david-schulte.de",
"author": "David Schulte",
"license": "MIT",
"bugs": {
"email": "[email protected]",
"url": "https://github.com/Arcus92/MinecraftWebViewer/issues"
},
"scripts": {
"dev": "run-s dev:js webpack-server",
"build": "run-s build:js",
"prebuild": "run-s lint",
"clean": "rimraf dist",
"lint": "eslint ./src/**.ts",
"webpack-server": "webpack serve --env NODE_ENV=dev --progress --color --open --hot",
"webpack-watch": "webpack --env NODE_ENV=dev --progress --color --watch --hot",
"dev:js": "webpack --env NODE_ENV=dev",
"build:js": "webpack --env NODE_ENV=prod --progress --color"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"copy-webpack-plugin": "^10.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.4.5",
"npm-run-all": "^4.1.5",
"terser-webpack-plugin": "^5.3.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.4",
"webpack": "^5.65.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.2",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@types/three": "^0.136.0",
"pako": "^2.0.4",
"three": "^0.136.0"
}
}