-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
42 lines (42 loc) · 1.23 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
{
"name": "an-http-story",
"version": "1.0.0",
"description": "A 13kb VR game for the 2020 js13kGames competition.",
"author": {
"name": "Kai Zau",
"email": "[email protected]",
"url": "https://kaizau.com"
},
"repository": "github:kaizau/an-http-story",
"license": "MIT",
"private": true,
"browserslist": [
"last 2 chrome versions, last 2 ff versions"
],
"scripts": {
"start": "webpack-dev-server --port 8888 --env TARGET=dev",
"preview": "webpack-dev-server --port 8888 --env TARGET=build",
"build": "webpack --env TARGET=build",
"zip": "webpack --env TARGET=zip && node zip.js",
"analyze": "webpack --env TARGET=analyze",
"lint": "prettier --ignore-path .gitignore --write . && eslint --fix ."
},
"devDependencies": {
"archiver": "^5.3.1",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^11.0.0",
"del": "^7.0.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"html-webpack-plugin": "^5.5.1",
"prettier": "^2.8.8",
"terser-webpack-plugin": "^5.3.7",
"webpack": "^5.81.0",
"webpack-bundle-analyzer": "^4.8.0",
"webpack-cli": "^5.0.2",
"webpack-dev-server": "^4.13.3"
},
"dependencies": {
"babylonjs": "^6.1.0"
}
}