-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 887 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
35
36
37
38
39
40
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": "12.11.1",
"npm" : "6.14.8"
},
"scripts": {
"start": "node public/app.js",
"dev": "nodemon src/app.ts",
"build": "tsc -p ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"email-validator": "^2.0.4",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"nodemon": "^2.0.15",
"pg": "^8.7.1",
"typeorm": "^0.2.41",
"typescript": "^4.5.4"
},
"devDependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cors": "^2.8.12",
"@types/email-validator": "^1.0.6",
"@types/express": "^4.17.13",
"@types/jsonwebtoken": "^8.5.6",
"@types/node": "^16.11.17",
"@types/pg": "^8.6.3",
"ts-node": "^10.4.0"
}
}