-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 726 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 726 Bytes
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
{
"name": "interview-app",
"version": "1.0.0",
"private": true,
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "tsx src/index.ts",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@apollo/subgraph": "^2.9.3",
"dotenv": "^16.5.0",
"fastify": "^5.2.1",
"graphql": "^16.10.0",
"graphql-yoga": "^5.11.0",
"zod": "^3.24.2"
},
"devDependencies": {
"msw": "^2.7.3",
"tsx": "^4.19.3",
"typescript": "^5.8.3",
"vitest": "^3.1.1"
},
"packageManager": "pnpm@9.15.4",
"vitest": {
"globals": true,
"environment": "node",
"include": ["src/**/*.test.ts"]
}
}