-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.08 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
{
"name": "express-typescript",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.5",
"@types/morgan": "^1.9.3",
"@types/node": "^18.7.18",
"@types/passport-local": "^1.0.34",
"nodemon": "^2.0.19",
"typescript": "^4.8.2"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/app.js",
"typeorm": "typeorm-ts-node-commonjs",
"build": "tsc",
"dev": "concurrently \"tsc -w\" \"nodemon dist/app.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"dependencies": {
"bcrypt": "^5.0.1",
"body-parser": "^1.20.1",
"concurrently": "^7.3.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-session": "^1.17.3",
"morgan": "^1.10.0",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"pg": "^8.4.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^10.9.2",
"typeorm": "0.3.10"
}
}