forked from bbohec/RobotFightingChampionship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.92 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
{
"name": "robotfightingchampionship",
"version": "0.0.0",
"description": "",
"scripts": {
"clean:build": "rimraf dist",
"test": "mocha --require esm 'src/**/*.spec.ts'",
"start": "node dist/main.js",
"madge:server": "madge -c dist/main.js",
"madge:client": "madge -c dist/public/scripts/game.js",
"build:ts": "tsc",
"build:parcel": "npm run clean:build && parcel build",
"test:parcel": "npm run clean:build && parcel src/public/html/test.html"
},
"targets": {
"frontend-test": {
"context": "browser",
"source": "src/public/html/test.html",
"distDir": "dist/public",
"optimize": false,
"scopeHoist": false
},
"frontend-production": {
"context": "browser",
"source": "src/public/html/game.html",
"distDir": "dist/public",
"optimize": false,
"scopeHoist": false
},
"backend": {
"context": "node",
"source": "src/main.ts",
"distDir": "dist",
"outputFormat": "commonjs",
"sourceMap": true,
"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"
]
},
"dependencies": {
"axios": "^0.22.0",
"body-parser": "^1.19.0",
"esm": "^3.2.25",
"eventsource": "^1.1.0",
"express": "^4.17.1",
"log4js": "^6.3.0",
"pixi.js": "^6.1.3",
"winston": "^3.3.3"
},
"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": "^8.2.2",
"@types/node": "^15.12.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.0",
"@typescript-eslint/parser": "^4.26.0",
"chai": "^4.3.4",
"deep-equal-in-any-order": "^1.1.15",
"eslint": "^7.28.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"madge": "^5.0.1",
"mocha": "^8.4.0",
"parcel": "^2.0.0",
"rimraf": "^3.0.2",
"source-map-support": "^0.5.19",
"ts-node": "^10.0.0",
"typescript": "^4.3.2",
"uuid": "^8.3.2"
}
}