-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 824 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 824 Bytes
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-base",
"version": "1.0.0",
"main": "src/index.ts",
"license": "MIT",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon",
"start": "npx ts-node index.ts",
"build": "tsc -b"
},
"dependencies": {
"bcrypt": "^5.0.1",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-validator": "^6.10.0",
"jsonwebtoken": "^8.5.1",
"pg": "^8.5.1",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.2.31"
},
"devDependencies": {
"@types/bcrypt": "^3.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/jsonwebtoken": "^8.5.0",
"@types/node": "^14.14.31",
"@types/pg": "^7.14.10",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
}
}