forked from andregardi/jwt-express-typeorm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.15 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
{
"name": "jwt-express-typeorm",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/express": "^4.17.12",
"@types/node": "^15.12.4",
"ts-node": "10.0.0",
"typescript": "4.3.4"
},
"dependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/body-parser": "^1.19.0",
"@types/cors": "^2.8.10",
"@types/helmet": "4.0.0",
"@types/jsonwebtoken": "^8.5.2",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"express": "^4.17.1",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"nanoid": "^3.1.23",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.2",
"ts-node-dev": "^1.1.6",
"typeorm": "0.2.34"
},
"scripts": {
"tsc": "tsc",
"start": "set debug=* && ts-node-dev ./src/index.ts",
"prod": "tsc && node ./build/index.js",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run",
"migration:generate": "ts-node ./node_modules/typeorm/cli.js migration:generate -- -n",
"typeorm": "ts-node -r tsconfig-paths/register ./node_modules/typeorm/cli.js"
}
}