-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.66 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
60
{
"name": "generic-api",
"version": "1.0.0",
"description": "Common code to be used in future projects",
"main": "src/app.ts",
"scripts": {
"setup": "node setup.js",
"start": "node -r dotenv/config build/app.js",
"build": "rimraf build && tsc",
"debug": "npm run build && node -r dotenv/config --debug build/app.js",
"test": "",
"init:localhost": "node scripts/initDatabase localhost"
},
"author": "Albert Kim",
"dependencies": {
"@types/bcrypt-nodejs": "0.0.30",
"@types/body-parser": "0.0.33",
"@types/bookshelf": "^0.8.33",
"@types/bunyan": "0.0.30",
"@types/dotenv": "^2.0.18",
"@types/express": "^4.0.33",
"@types/http-errors": "^1.3.29",
"@types/jsonwebtoken": "^7.1.32",
"@types/lodash": "^4.14.36",
"@types/mocha": "^2.2.32",
"@types/mysql": "0.0.29",
"@types/randomstring": "^1.1.4",
"@types/rimraf": "0.0.28",
"@types/supertest": "^1.1.31",
"bcrypt-nodejs": "0.0.3",
"body-parser": "^1.15.2",
"bookshelf": "^0.9.1",
"bunyan": "^1.5.1",
"chai": "^3.4.1",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"jsonwebtoken": "^5.4.1",
"knex": "^0.9.0",
"mocha": "^2.3.4",
"mysql": "^2.11.1",
"mysql-promise": "^3.1.0",
"randomstring": "^1.1.5",
"rimraf": "^2.5.4",
"supertest": "^1.1.0",
"ts-node": "^1.3.0",
"tslint": "^3.15.1",
"typescript": "^2.0.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/albertkim/Generic.git"
},
"bugs": {
"url": "https://github.com/albertkim/Generic/issues"
},
"homepage": "https://github.com/albertkim/Generic#readme",
"engines": {
"node": "6.6.0"
}
}