-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
executable file
·59 lines (59 loc) · 1.81 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
{
"name": "@rsi/server",
"version": "0.2.5",
"description": "A Reactive Extensions based server for the Volkswagen Infotainment Web Interface as public in 2016 by W3C",
"main": "dist/public_api.js",
"types": "dist/public_api.d.ts",
"scripts": {
"test": "npm run build && npm run test:only",
"test:only": "jasmine",
"test:prod": "npm run build:prod && npm run test:only",
"build": "npm run build:dev",
"build:dev": "tsc",
"build:prod": "npm run lint && tsc",
"lint": "tslint --project ./tsconfig.json",
"lint:fix": "tslint --fix --project ./tsconfig.json",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0 && git add CHANGELOG.md"
},
"author": "Dr. Patrick Bartsch",
"contributors": [
"Benjamin Dobler",
"Denny Trebbin"
],
"license": "MIT",
"dependencies": {
"@rsi/core": "https://github.com/wzr1337/rsi.core#0.2.9",
"@rsi/cdn": "https://github.com/wzr1337/rsi.cdn#0.2.9",
"body-parser": "^1.18.3",
"compression": "^1.7.2",
"cors": "^2.8.4",
"express": "^4.16.3",
"file-type": "^8.0.0",
"glob": "^7.1.2",
"install": "^0.11.0",
"query-string": "^6.1.0",
"request": "^2.87.0",
"rxjs": "^5.5.11",
"uuid": "^3.2.1",
"winston": "^2.4.2",
"ws": "^5.2.0"
},
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/compression": "^0.0.36",
"@types/cors": "^2.8.4",
"@types/express": "^4.16.0",
"@types/file-type": "^5.2.1",
"@types/jasmine": "^2.8.8",
"@types/node": "^10.1.2",
"@types/query-string": "^5.1.0",
"@types/request": "^2.47.0",
"@types/uuid": "^3.4.3",
"@types/winston": "^2.3.9",
"@types/ws": "^5.1.2",
"conventional-changelog-cli": "^2.0.1",
"jasmine-console-reporter": "^3.0.2",
"tslint": "^5.10.0",
"typescript": "^2.9.1"
}
}