-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.97 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.97 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
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "travel-planner-api-test",
"version": "1.0.0",
"description": "",
"main": "src/graphql/server.ts",
"scripts": {
"dev": "cross-env NODE_ENV=development ts-node src/graphql/server.ts",
"start": "cross-env NODE_ENV=production node dist/graphql/server.js",
"test": "jest --coverage",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage --coverageReporters=text --coverageReporters=lcov",
"lint": "eslint . --ext .ts",
"ui": "cd frontend && npm start",
"dev:ui": "concurrently \"npm run dev\" \"npm run ui\"",
"build:ui": "cd frontend && npm run build",
"install:ui": "cd frontend && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codewithmayor/travel-planner-api-test.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/codewithmayor/travel-planner-api-test.git"
},
"homepage": "https://github.com/codewithmayor/travel-planner-api-test#readme",
"devDependencies": {
"@testing-library/jest-dom": "^6.1.5",
"@testing-library/react": "^14.1.2",
"@testing-library/user-event": "^14.5.1",
"@types/supertest": "^6.0.3",
"@types/validator": "^13.15.2",
"concurrently": "^8.2.2",
"cross-env": "^10.0.0",
"msw": "^2.0.8",
"ts-node": "^10.9.2"
},
"dependencies": {
"@apollo/server": "^5.0.0",
"@types/express": "^5.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^24.1.0",
"@types/node-fetch": "^2.6.12",
"dataloader": "^2.2.3",
"dotenv": "^17.2.1",
"dotenv-safe": "^9.1.0",
"eslint": "^9.32.0",
"express": "^5.1.0",
"express-rate-limit": "^8.0.1",
"graphql": "^16.11.0",
"graphql-depth-limit": "^1.1.0",
"helmet": "^8.1.0",
"husky": "^9.1.7",
"jest": "^30.0.5",
"nock": "^14.0.7",
"node-fetch": "^2.7.0",
"prettier": "^3.6.2",
"supertest": "^7.1.4",
"ts-jest": "^29.4.0",
"validator": "^13.15.15",
"zod": "^4.0.13"
}
}