-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 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
38
39
{
"name": "blaze",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev --poll src/index.ts",
"test": "jest --watchAll --no-cache",
"test:ci": "jest"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/test/setup.ts"
]
},
"keywords": [],
"author": "Tommy Adeniyi",
"license": "ISC",
"dependencies": {
"@types/express": "^4.17.14",
"dotenv": "^16.0.3",
"express": "^4.18.1",
"express-async-errors": "^3.1.1",
"express-validator": "^6.14.2",
"mongoose": "^6.6.5",
"ts-node-dev": "^2.0.0",
"typescript": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.1.1",
"@types/supertest": "^2.0.12",
"jest": "^29.1.2",
"mongodb-memory-server": "^8.9.3",
"supertest": "^6.3.0",
"ts-jest": "^29.0.3"
}
}