-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.31 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.",
"devDependencies": {
"@svgr/webpack": "^5.5.0",
"@types/node": "^15.0.1",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"@types/bcrypt": "^3.0.1",
"@types/cookie": "^0.4.0",
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.1",
"@types/morgan": "^1.9.2",
"@types/multer": "^1.4.5"
},
"dependencies": {
"bcrypt": "^5.0.1",
"class-transformer": "^0.4.0",
"class-validator": "^0.13.1",
"concurrently": "^6.0.2",
"cookie": "^0.4.0",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dayjs": "^1.10.4",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"mysql": "^2.14.1",
"reflect-metadata": "^0.1.10",
"slugify": "^1.5.0",
"typeorm": "0.2.32"
},
"scripts": {
"start": "npm run build && node build/server.js",
"build": "npx tsc",
"server": "nodemon --exec ts-node src/server.ts",
"client": "cd ../client && npm run dev",
"typeorm": "ts-node ./node_modules/typeorm/cli.js",
"dev": "concurrently \"npm run server\" \"npm run client\" -n server,client "
}
}