-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.26 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
{
"name": "node",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"restore": "npm install",
"check": "prettier src test --config .prettierrc --check && eslint",
"fix": "prettier src test --config .prettierrc --write && eslint --fix",
"start": "nodemon --inspect=3000 -e ts --exec node -r ts-node/register src/main.ts",
"test": "jest --no-cache",
"build": "tsc"
},
"dependencies": {
"cors": "2.8.5",
"dotenv": "16.4.5",
"express": "5.0.1",
"helmet": "8.0.0",
"joi": "17.13.3",
"mongodb": "6.11.0",
"mongoose": "8.8.3"
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@testcontainers/mongodb": "10.15.0",
"@types/cors": "2.8.17",
"@types/express": "5.0.0",
"@types/jest": "29.5.14",
"@types/node": "22.10.1",
"@types/supertest": "6.0.2",
"eslint": "9.16.0",
"eslint-config-prettier": "9.1.0",
"jest": "29.7.0",
"nodemon": "3.1.7",
"prettier": "3.4.1",
"supertest": "7.0.0",
"testcontainers": "10.15.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.16.0"
}
}