-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.68 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.68 KB
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
{
"name": "syncodeo-api",
"version": "1.1.2",
"description": "",
"main": "index.js",
"scripts": {
"watch": "tsc -w",
"build": "rimraf build && npm run tsify",
"tsify": "tsc",
"start": "node build/index.js",
"start-coverage": "nyc npm start",
"report": "nyc report",
"test": "mocha --require ts-node/register tests/**/*.spec.ts --timeout 10000 --exit",
"docker:build": "docker build -t syncodeo-api:$npm_package_version ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/dotenv": "^6.1.0",
"@types/elasticsearch": "^5.0.30",
"@types/hapi": "^17.8.5",
"@types/jsonwebtoken": "^8.3.0",
"@types/node": "^10.12.21",
"@types/sequelize": "^4.27.35",
"@types/socket.io": "^2.1.2",
"axios": "^0.18.0",
"boom": "^7.3.0",
"catbox-redis": "^4.2.4",
"dotenv": "^6.2.0",
"elasticsearch": "^15.4.1",
"google-auth-library": "^2.0.2",
"googleapis": "^35.0.0",
"hapi": "^17.8.4",
"hapi-auth-basic": "^5.0.0",
"hapi-auth-jwt2": "^8.3.0",
"hapi-swagger": "^9.3.0",
"inert": "^5.1.2",
"joi": "^14.3.1",
"jsonwebtoken": "^8.4.0",
"mysql2": "^1.6.4",
"prom-client": "^11.2.1",
"sequelize": "^4.42.0",
"socket.io": "^2.2.0",
"typescript": "^3.3.3",
"vision": "^5.4.4"
},
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.6",
"@types/redis": "^2.8.11",
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"colors": "^1.3.3",
"mocha": "^5.2.0",
"nyc": "^13.3.0",
"redis": "^2.8.0",
"rimraf": "^2.6.3",
"ts-node": "^8.0.3",
"uuid": "^3.3.2"
},
"nyc": {
"exclude": [
"index.js"
]
}
}