-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.44 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
{
"name": "hack24-api",
"description": "Hack24 Application",
"version": "1.0.1",
"private": true,
"main": "./bin/server.js",
"scripts": {
"clean": "rimraf build",
"lint": "tslint -c src/tslint.json -e \"src/**/*.d.ts\" \"src/**/*.ts\"",
"prebuild": "npm run lint && npm run clean",
"build": "tsc -p src/",
"start": "node .",
"test": "mocha --timeout 5000 -R dot --require source-map-support/register --recursive build/test",
"heroku-postbuild": "npm run build && npm prune --production"
},
"dependencies": {
"@slack/client": "^3.9.0",
"boom": "^4.3.1",
"hapi": "^16.1.1",
"hapi-pino": "^1.4.1",
"joi": "^10.4.1",
"mongoose": "^4.9.6",
"pino": "^4.4.0",
"pusher": "^1.5.1",
"slug": "^0.9.1",
"source-map-support": "^0.4.15"
},
"devDependencies": {
"@types/body-parser": "^1.16.3",
"@types/boom": "^4.3.1",
"@types/express": "^4.0.35",
"@types/hapi": "^16.0.4",
"@types/joi": "^10.3.2",
"@types/mime": "0.0.29",
"@types/mocha": "^2.2.41",
"@types/mongodb": "^2.2.0",
"@types/mongoose": "^4.7.11",
"@types/serve-static": "^1.7.31",
"@types/superagent": "^2.0.36",
"@types/supertest": "^2.0.0",
"body-parser": "^1.17.1",
"express": "^4.15.2",
"mocha": "^3.3.0",
"mongodb": "^2.2.26",
"promisify-supertest": "^1.0.0",
"rimraf": "^2.6.1",
"supertest": "^3.0.0",
"tslint": "^5.2.0",
"typescript": "^2.3.2"
}
}