-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.26 KB
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
45
46
47
48
49
50
51
52
53
{
"name": "week-6-task",
"version": "0.0.0",
"private": true,
"scripts": {
"test": "jest --runInBand --detectOpenHandles",
"start": "node ./bin/www",
"dev": "nodemon ./bin/www",
"build": "tsc"
},
"dependencies": {
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"debug": "~2.6.9",
"docker": "^1.0.0",
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "~4.16.1",
"express-graphql": "^0.12.0",
"express-validator": "^7.0.1",
"graphql": "^16.7.1",
"http-errors": "~1.6.3",
"jade": "~1.11.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.2",
"morgan": "~1.9.1",
"react": "^18.2.0",
"react-router-dom": "^6.14.1",
"typescript": "^5.1.3",
"zod": "^3.21.4"
},
"jest": {
"modulePathIgnorePatterns": [
"database.json",
"usersDatabase.json"
],
"preset": "ts-jest"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.3",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"@types/http-errors": "^2.0.1",
"@types/jest": "^29.5.2",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.4",
"@types/supertest": "^2.0.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"supertest": "^6.3.3",
"ts-jest": "^29.1.0"
}
}