-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 2.37 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "rock3d",
"version": "0.0.1",
"description": "A simple 3D engine with a 2.5D heart.",
"license": "Zlib",
"private": false,
"author": {
"name": "Alex Mayfield",
"email": "[email protected]"
},
"repository": {
"url": "https://github.com/AlexMax/rock3d.js.git"
},
"scripts": {
"build-server": "tsc --project ./src/server",
"build-client": "webpack --config webpack.config.js --config-name client",
"build-editor": "webpack --config webpack.config.js --config-name editor",
"build-files": "node ./build-files.js",
"dev": "concurrently \"npm:webserver\" \"npm:dev-server\" \"npm:dev-client\"",
"dev-server": "tsc-watch --project ./src/server --onSuccess \"node ./dist/server/index.js\" --noClear",
"dev-client": "webpack --config webpack.config.js --config-name client --watch --mode=development",
"dev-editor": "concurrently --names \"webserver,editor\" \"npm:webserver\" \"webpack --config webpack.config.js --config-name editor --watch --mode=development\"",
"lint": "eslint src --ext .ts,.tsx",
"server": "node ./dist/server/index.js",
"test": "jest",
"test-watch": "jest --watch",
"webserver": "node ./webserver.js"
},
"dependencies": {
"earcut": "^2.2.2",
"gl-matrix": "^3.3.0",
"ws": "^7.2.3"
},
"devDependencies": {
"@types/content-type": "^1.1.3",
"@types/earcut": "^2.1.0",
"@types/jest": "^25.1.4",
"@types/react-dom": "^16.9.6",
"@types/react": "^16.9.31",
"@types/ws": "^7.2.3",
"@typescript-eslint/eslint-plugin": "^2.26.0",
"@typescript-eslint/parser": "^2.26.0",
"benchmark": "^2.1.4",
"concurrently": "^5.1.0",
"content-type": "^1.0.4",
"css-loader": "^3.4.2",
"eslint-plugin-react": "^7.19.0",
"eslint": "^6.8.0",
"express": "^4.17.1",
"html-webpack-plugin": "^4.0.4",
"jest": "^25.2.4",
"microtime": "^3.0.0",
"mini-css-extract-plugin": "^0.9.0",
"raw-loader": "^4.0.0",
"react-dom": "^16.13.1",
"react": "^16.13.1",
"ts-jest": "^25.3.0",
"ts-loader": "^6.2.2",
"tsc-watch": "^4.2.3",
"typescript": "^3.8.3",
"webpack-cli": "^3.3.11",
"webpack": "^4.42.1"
}
}