-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.84 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.84 KB
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
{
"name": "nullfront",
"version": "1.0.0",
"description": "three.js, socket.io, etc multiplayer FPS attempt",
"main": "src/server.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run server",
"quick": "npm run build && npm run server",
"build": "npm run clean && npm run compile && npm run dist",
"clean": "rm -rf ./dist ./build",
"compile": "tsc",
"dist": "webpack --config webpack.config.js --progress",
"server": "node ./build/src/server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Arkanic/nullfront.git"
},
"author": "Arkanic",
"license": "ISC",
"bugs": {
"url": "https://github.com/Arkanic/nullfront/issues"
},
"homepage": "https://github.com/Arkanic/nullfront#readme",
"devDependencies": {
"@types/express": "^4.17.21",
"@types/lodash": "^4.17.6",
"@types/three": "^0.166.0",
"@types/throttle-debounce": "^5.0.2",
"@types/uuid": "^10.0.0",
"@types/webpack": "^5.28.5",
"@types/webpack-env": "^1.18.5",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^7.1.2",
"css-modules-typescript-loader": "^4.0.1",
"file-loader": "^6.2.0",
"html-loader": "^5.0.0",
"html-webpack-plugin": "^5.6.0",
"mini-css-extract-plugin": "^2.9.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"typescript": "^5.5.3",
"webpack": "^5.92.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"cannon-es": "^0.20.0",
"express": "^4.19.2",
"jsonschema": "^1.4.1",
"lodash": "^4.17.21",
"socket.io": "^4.7.5",
"socket.io-client": "^4.7.5",
"striptags": "^3.2.0",
"three": "^0.166.1",
"throttle-debounce": "^5.0.2",
"ts-json-schema-generator": "^2.3.0",
"uuid": "^10.0.0"
}
}