-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "game-engine",
"version": "1.0.0",
"private": true,
"main": "index.js",
"scripts": {
"start": "webpack serve --open",
"watch": "webpack --watch",
"build": "webpack",
"lint": "eslint --ext .ts,.tsx .",
"lint:fix": "eslint --ext .ts,.tsx . --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Bryan McClain <[email protected]>",
"devDependencies": {
"@babel/core": "^7.12.13",
"@babel/plugin-transform-runtime": "^7.13.10",
"@babel/preset-env": "^7.12.13",
"@babel/preset-typescript": "^7.12.13",
"@types/webpack-env": "^1.16.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"babel-loader": "^8.2.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^5.0.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"html-webpack-plugin": "^5.0.0",
"prettier": "2.2.1",
"source-map-loader": "^2.0.1",
"style-loader": "^2.0.0",
"typescript": "^4.1.5",
"webpack": "^5.21.2",
"webpack-cli": "^4.5.0",
"webpack-dev-server": "^3.11.2"
},
"dependencies": {
"@babel/runtime": "^7.13.10",
"@types/color": "^3.0.1",
"@types/lodash": "^4.14.168",
"@types/three": "^0.127.0",
"prettysize": "^2.0.0",
"three": "^0.127.0"
}
}