-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 866 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 866 Bytes
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
{
"name": "hackerpass-server",
"version": "0.1.0",
"description": "Hackerpass Server",
"main": "src/server.ts",
"repository": "github.com/HackrLabs/hackerpass-server",
"author": "Danny Grove <danny@drgrovellc.com>",
"license": "Apache-2.0",
"dependencies": {
"bcrypt": "^2.0.0",
"config": "^1.30.0",
"jsonwebtoken": "^8.2.1",
"koa": "^2.5.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-response-time": "^2.0.0",
"koa-roles": "^2.0.0",
"koa-trie-router": "^2.1.6",
"mysql": "^2.15.0",
"winston": "^2.4.0"
},
"devDependencies": {
"@types/node": "^9.6.5",
"nodemon": "^1.12.1",
"ts-node": "^5.0.1",
"typescript": "^2.7.2"
},
"scripts": {
"start": "node index.js",
"start:watch": "nodemon",
"prestart:prod": "tsc",
"start:prod": "node dist/server.js"
}
}