-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "vasteroids",
"version": "1.0.0",
"description": "your whole life your whole fucking life",
"main": "index.js",
"scripts": {
"build": "rm -rf ./client/js && rm -rf ./ts-out && node-gyp rebuild && tsc && npx webpack",
"build-debug": "rm -rf ./client/js && rm -rf ./ts-out && node-gyp build --debug && tsc && npx webpack",
"tsc-only": "rm -rf ./ts-out && rm -rf ./client/js && tsc && npx webpack",
"test": "mocha ts-out/test/*",
"start": "node ./ts-out/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jamieboy1337/vasteroids.git"
},
"author": "jamieboy1337",
"license": "ISC",
"bugs": {
"url": "https://github.com/jamieboy1337/vasteroids/issues"
},
"homepage": "https://github.com/jamieboy1337/vasteroids#readme",
"dependencies": {
"@types/express": "^4.17.11",
"@types/ws": "^7.4.1",
"bindings": "^1.5.0",
"chai-stats": "^0.3.0",
"express": "^4.17.1",
"node-addon-api": "^3.1.0",
"node-gyp": "^8.0.0",
"performance-now": "^2.1.0",
"ws": "^7.4.4"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.37",
"chai": "^4.3.4",
"mocha": "^8.3.2",
"ts-loader": "^8.1.0",
"typescript": "^4.2.3",
"webpack": "^5.33.2",
"webpack-cli": "^4.6.0"
}
}