-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 879 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
{
"name": "vivacity-backend",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/server.ts",
"build": "rm -rf build/ && prettier --write src/ && tsc",
"test": "jest --coverage",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/axios": "^0.14.0",
"@types/express": "^4.17.17",
"@types/morgan": "^1.9.4",
"axios": "^1.4.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"http-status-codes": "^2.2.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.22",
"pg": "^8.11.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"devDependencies": {
"@types/jest": "^29.5.2",
"@types/supertest": "^2.0.12",
"chai": "^4.3.7",
"jest": "^29.6.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1"
}
}