-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
102 lines (102 loc) · 3.12 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "robotfightingchampionship",
"version": "0.0.0",
"description": "",
"scripts": {
"build": "npm run clean:build && parcel build",
"clean:build": "rimraf dist",
"start": "node dist/main.js",
"test": "mocha 'src/**/*.spec.ts'",
"typecheck": "tsc --noEmit"
},
"targets": {
"frontend-test": {
"context": "browser",
"source": "src/public/html/test.html",
"distDir": "dist/public",
"sourceMap": true,
"optimize": false,
"scopeHoist": false
},
"frontend-production": {
"context": "browser",
"source": "src/public/html/game.html",
"distDir": "dist/public",
"sourceMap": true,
"optimize": false,
"scopeHoist": false
},
"backend": {
"context": "node",
"source": "src/main.ts",
"distDir": "dist",
"outputFormat": "commonjs",
"optimize": false,
"scopeHoist": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/bbohec/RobotFightingChampionship.git"
},
"author": "",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/bbohec/RobotFightingChampionship/issues"
},
"homepage": "https://github.com/bbohec/RobotFightingChampionship#readme",
"mocha": {
"reporter": "spec",
"full-trace": true,
"require": [
"ts-node/register",
"source-map-support/register"
]
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/deep-equal-in-any-order": "^1.0.1",
"@types/eventsource": "^1.1.6",
"@types/express": "^4.17.13",
"@types/mocha": "^10.0.0",
"@types/node": "^18.11.3",
"@types/three": "^0.144.0",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"assert": "^2.0.0",
"axios": "^1.1.3",
"browserify-zlib": "^0.2.0",
"chai": "^4.3.4",
"crypto-browserify": "^3.12.0",
"deep-equal-in-any-order": "^2.0.0",
"eslint": "^8.25.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"esm": "^3.2.25",
"events": "^3.3.0",
"eventsource": "^2.0.2",
"express": "^4.17.1",
"https-browserify": "^1.0.0",
"log4js": "^6.3.0",
"mocha": "^10.1.0",
"parcel": "^2.0.0",
"path-browserify": "^1.0.1",
"pixi.js": "^6.1.3",
"process": "^0.11.10",
"punycode": "^1.4.1",
"querystring-es3": "^0.2.1",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"stream-browserify": "^3.0.0",
"stream-http": "^3.2.0",
"three": "^0.145.0",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"util": "^0.12.4",
"uuid": "^9.0.0",
"winston": "^3.3.3"
}
}