-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 893 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": "authontication",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "nodemon src/index.ts",
"test": "env-cmd -f ./config/test.env jest test/"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@svcollege/helper-c": "^1.0.3",
"express": "^4.18.2",
"express-async-errors": "^3.1.1",
"express-validator": "^7.0.1",
"mongoose": "^7.0.4"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.11",
"@types/nodemon": "^1.19.2",
"@types/supertest": "^2.0.12",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}