forked from DAVFoundation/missioncontrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.35 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
{
"name": "apiserver",
"version": "1.0.0",
"description": "API Server",
"homepage": "https://github.com/DAVFoundation/missioncontrol#readme",
"bugs": {
"url": "https://github.com/DAVFoundation/missioncontrol/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DAVFoundation/missioncontrol.git"
},
"license": "MIT",
"author": "",
"main": "index.js",
"scripts": {
"preinstall": "cp ./.githooks/* .git/hooks",
"jest": "gulp jest",
"spellcheck": "npx gulp spellcheck",
"start": "ts-node ./src/index.ts",
"tsc": "gulp tsc",
"tslint": "gulp tslint"
},
"dependencies": {
"cassandra-driver": "^3.5.0",
"dav-js": "DAVFoundation/dav-js",
"express": "^4.16.4",
"kafka-node": "^2.6.1",
"rxjs": "^5.5.12"
},
"devDependencies": {
"@types/cassandra-driver": "^3.4.0",
"@types/chai": "4.1.7",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.16.1",
"@types/jest": "^24.0.11",
"@types/kafka-node": "^2.0.8",
"chai": "^4.2.0",
"chai-http": "4.2.1",
"gulp": "^4.0.0",
"gulp-jest": "^4.0.2",
"gulp-ts-spellcheck": "^1.3.7",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"jest": "^24.7.1",
"jest-cli": "^24.7.1",
"ts-jest": "^24.0.2",
"ts-node": "^8.0.3",
"tslint": "^5.15.0",
"typescript": "^3.4.2"
}
}