-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 935 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
{
"name": "mod-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:test": "set NODE_ENV=test& jest --runInBand",
"start:dev": "nodemon -e ts,json src/server.ts"
},
"author": "",
"license": "ISC",
"dependencies": {
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"pg": "^8.7.1",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"statuscode-library": "^1.0.2",
"validator": "^13.6.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/jest": "^27.4.1",
"@types/node": "^16.6.1",
"@types/sequelize": "^4.28.10",
"@types/supertest": "^2.0.12",
"@types/validator": "^13.6.3",
"jest": "^27.5.1",
"nodemon": "^2.0.15",
"supertest": "^6.2.2",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3"
}
}