-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.3 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "nextjs-graphql",
"version": "0.1.0",
"private": true,
"packageManager": "pnpm@10.5.2",
"scripts": {
"dev": "next telemetry disable && next dev",
"build": "next telemetry disable && next build",
"start": "next telemetry disable && next start",
"lint": "next lint",
"test": "jest --watch",
"test:ci": "jest --ci",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@apollo/server": "~4.9.4",
"@apollo/client": "~3.8.6",
"@as-integrations/next": "~2.0.2",
"antd": "~5.10.2",
"@ant-design/icons": "~5.6.1",
"@ant-design/cssinjs": "~1.17.2",
"graphql": "~16.8.1",
"graphql-tag": "~2.12.6",
"neverthrow": "~6.1.0",
"pg": "~8.11.3",
"react": "~18.2.0",
"react-dom": "~18.2.0",
"next": "~13.5.8",
"ulid": "~2.3.0"
},
"devDependencies": {
"@graphql-tools/jest-transform": "~2.0.0",
"@testing-library/jest-dom": "~6.1.4",
"@testing-library/react": "~14.0.0",
"@testing-library/user-event": "~14.5.1",
"@types/node": "~20.9.0",
"@types/react": "~18.2.32",
"@types/react-dom": "~18.2.15",
"@types/pg": "~8.10.9",
"@types/jest": "~29.5.8",
"@types/jest-when": "~3.5.5",
"@types/uuid": "~9.0.7",
"jest": "~29.7.0",
"jest-environment-jsdom": "~29.7.0",
"jest-when": "~3.6.0",
"typescript": "~5.2.2",
"tsdef": "~0.0.14",
"ts-jest": "~29.1.1"
}
}