-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.36 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
{
"name": "new-typeorm-project",
"version": "0.0.1",
"description": "Awesome project developed with TypeORM.",
"type": "commonjs",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.1",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.8",
"@types/morgan": "^1.9.3",
"@types/multer": "^1.4.7",
"@types/node": "^16.11.10",
"concurrently": "^7.1.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.15",
"ts-node": "10.4.0",
"typescript": "4.5.2"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"cookie": "^0.4.2",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"dotenv": "^16.0.0",
"express": "^4.17.3",
"jsonwebtoken": "^8.5.1",
"multer": "^1.4.4",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"typeorm": "0.2.44",
"typeorm-seeding": "^1.6.1"
},
"scripts": {
"start": "ts-node src/server.ts",
"server": "nodemon --exec ts-node src/server.ts",
"client": "cd client && npm run dev",
"typeorm": "node --require ts-node/register ./node_modules/typeorm/cli.js",
"dev": "concurrently \"npm run server\" \"npm run client\" -n server,client",
"seed": "ts-node ./node_modules/typeorm-seeding/dist/cli.js seed"
}
}