-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.78 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
61
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"start": "npm run serve",
"build": "npm run build-ts",
"serve": "node dist/index.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"tslint": "tslint -c tslint.json -p tsconfig.json",
"debug": "npm run build && npm run watch-debug",
"serve-debug": "nodemon --inspect dist/index.js",
"watch-debug": "concurrently -k -p \"[{name}]\" -n \"TypeScript,Node\" -c \"cyan.bold,green.bold\" \"npm run watch-ts\" \"npm run serve-debug\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/async": "^2.4.2",
"@types/bcrypt": "^3.0.0",
"@types/bluebird": "^3.5.26",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.5",
"@types/express": "^4.16.1",
"@types/jsonwebtoken": "^8.3.2",
"@types/lodash": "^4.14.130",
"@types/morgan": "^1.7.35",
"@types/node": "^12.0.0",
"@types/passport": "^1.0.0",
"@types/passport-http-bearer": "^1.0.33",
"@types/passport-local": "^1.0.33",
"@types/sequelize": "^4.27.49",
"@types/validator": "^10.11.0",
"concurrently": "^4.1.0",
"nodemon": "^1.19.0",
"ts-node": "^8.1.0",
"tsc-watch": "^2.1.2",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"dependencies": {
"bcrypt": "^3.0.6",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "^8.0.0",
"express": "^4.16.4",
"jsonwebtoken": "^8.5.1",
"lodash": "^4.17.11",
"morgan": "^1.9.1",
"mysql2": "^1.6.5",
"passport": "^0.4.0",
"passport-http-bearer": "^1.0.1",
"passport-local": "^1.0.0",
"reflect-metadata": "^0.1.13",
"sequelize": "^5.8.5",
"sequelize-cli": "^5.4.0",
"sequelize-typescript": "^1.0.0-alpha.9"
}
}