-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1004 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": "project",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"devDependencies": {
"@types/node": "^8.0.29",
"ts-node": "3.3.0",
"ts-node-dev": "^1.1.6",
"typescript": "3.3.3333"
},
"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.18.1",
"class-validator": "^0.13.1",
"cors": "^2.8.5",
"express": "^4.15.4",
"helmet": "^4.6.0",
"jsonwebtoken": "^8.5.1",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"typeorm": "0.2.34"
},
"scripts": {
"tsc": "tsc",
"start": "npx ts-node-dev --respawn --transpile-only --quiet src/index.ts",
"prod": "tsc && node ./build/app.js",
"migration:run": "ts-node ./node_modules/typeorm/cli.js migration:run"
}
}