-
Notifications
You must be signed in to change notification settings - Fork 96
/
package.json
34 lines (34 loc) · 969 Bytes
/
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
{
"name": "jwt-express-typeorm",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"ts-node": "3.3.0",
"@types/node": "^8.0.29",
"typescript": "2.5.2"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.17.0",
"@types/cors": "^2.8.4",
"@types/helmet": "0.0.42",
"@types/jsonwebtoken": "^8.3.0",
"bcryptjs": "^2.4.3",
"body-parser": "^1.18.1",
"class-validator": "^0.9.1",
"cors": "^2.8.5",
"express": "^4.15.4",
"helmet": "^3.15.0",
"jsonwebtoken": "^8.4.0",
"reflect-metadata": "^0.1.10",
"sqlite3": "^4.0.3",
"ts-node-dev": "^1.0.0-pre.32",
"typeorm": "0.2.12"
},
"scripts": {
"tsc": "tsc",
"start": "set debug=* && ts-node-dev --respawn --transpileOnly ./src/index.ts",
"prod": "tsc && node ./build/app.js",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run"
}
}