-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.8 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
{
"name": "outrun-networking",
"author": "Outrun Labs, LLC",
"email": "[email protected]",
"license": "GPL-3.0",
"version": "0.0.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"start-game-server": "./cli/start-game-server.js"
},
"scripts": {
"precommit": "pretty-quick --staged",
"build": "tsc",
"test": "jest --runInBand --coverage",
"coverage": "codecov"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"@types/express": "^4.11.1",
"@types/minimist": "^1.2.0",
"@types/react": "^16.3.16",
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"electron-webrtc": "^0.3.0",
"express": "^4.16.3",
"minimist": "^1.2.0",
"nanoid": "^1.0.2",
"oni-types": "^0.0.8",
"outrun-game-core": "^0.0.1",
"react": "^16.4.0",
"request": "^2.87.0",
"request-promise": "^4.2.2",
"simple-peer": "^9.1.2",
"wrtc": "^0.1.4"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/jest": "^22.2.3",
"@types/nanoid": "^1.0.0",
"@types/node": "^10.1.4",
"@types/request": "^2.47.0",
"@types/request-promise": "^4.1.41",
"@types/simple-peer": "^6.1.4",
"husky": "^0.14.3",
"jest": "^23.1.0",
"prettier": "^1.13.3",
"pretty-quick": "^1.6.0",
"ts-jest": "^22.4.6",
"typescript": "^2.8.4"
}
}