This repository has been archived by the owner on May 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·90 lines (90 loc) · 2.83 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "game-engine",
"version": "1.0.0",
"description": "",
"type": "module",
"scripts": {
"build-ts": "script/build-ts.sh",
"build": "script/build.sh",
"build-start": "script/build-start.sh",
"bundle": "script/bundle.sh",
"start": "script/start.sh",
"test": "script/test.sh",
"coverage": "script/coverage.sh",
"watch-bundle": "script/watch-bundle.sh",
"watch-copy-public-files": "script/watch-copy-public-files.sh",
"watch-node": "script/watch-node.sh",
"watch-test": "script/watch-test.sh",
"watch-ts": "script/watch-ts.sh",
"watch": "script/watch.sh",
"copy-public-files": "script/copy-public-files.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Dinhero21/game-engine.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@babel/register": "^7.22.15",
"@types/chai": "^4.3.5",
"@types/dat.gui": "^0.7.10",
"@types/express": "^4.17.17",
"@types/figlet": "^1.5.6",
"@types/lodash": "^4.14.195",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.11",
"@types/socket.io-client": "^3.0.0",
"@types/stats.js": "^0.17.0",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"c8": "^8.0.1",
"chai": "^4.3.8",
"concurrently": "^8.0.1",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jsdom": "22.1.0",
"jsdom-global": "3.0.2",
"mocha": "^10.2.0"
},
"dependencies": {
"@babel/cli": "^7.6.4",
"@babel/core": "^7.22.8",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/plugin-proposal-object-rest-spread": "^7.20.7",
"@babel/plugin-transform-class-static-block": "^7.22.5",
"@babel/plugin-transform-typescript": "^7.22.15",
"@babel/preset-env": "^7.22.7",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"alea": "^1.0.1",
"babel": "^6.23.0",
"babel-plugin-add-import-extension": "^1.6.0",
"dat.gui": "^0.7.9",
"express": "^4.18.2",
"figlet": "^1.6.0",
"json5": "^2.2.3",
"lodash": "^4.17.21",
"nodemon": "^3.0.0",
"rollup": "^3.26.2",
"rollup-plugin-glob-import": "^0.5.0",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-sourcemaps": "^0.6.3",
"simplex-noise": "^4.0.1",
"socket.io": "^4.6.1",
"socket.io-client": "^4.7.1",
"stats.js": "^0.17.0",
"tiny-typed-emitter": "^2.1.0"
},
"bugs": {
"url": "https://github.com/Dinhero21/game-engine/issues"
},
"homepage": "https://github.com/Dinhero21/game-engine#readme"
}