-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.04 KB
/
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
40
41
42
43
44
{
"name": "api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "nodemon ./src/Server/app.ts",
"dev": "nodemon ./src/Server/app.ts",
"build": "tsc --project tsconfig.json"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"dotenv": "^16.0.3",
"express": "^4.18.2",
"inversify": "^6.0.1",
"joi": "^17.9.1",
"mongodb": "^4.13.0",
"mongoose": "^6.8.2",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@babel/preset-typescript": "^7.22.11",
"@types/express": "^4.17.15",
"@types/jest": "^29.5.4",
"@types/node": "^18.11.18",
"@types/supertest": "^2.0.12",
"axios": "^1.5.0",
"jest": "^29.6.4",
"nodemon": "^2.0.20",
"supertest": "^6.3.3",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"jest": {
"testEnvironment": "node",
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleNameMapper": {
"\\.(css|scss)$": "identity-obj-proxy"
}
}
}