-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
56 lines (56 loc) · 1.63 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "backend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "yarn generate && next dev",
"build": "yarn generate && next build",
"start": "yarn generate && next start",
"lint": "next lint",
"test:watch": "jest --watchAll",
"test": "yarn generate && jest",
"generate": "graphql-codegen --config ./codegen.yml"
},
"dependencies": {
"@apollo/subgraph": "^2.8.4",
"@apollo/utils.keyvaluecache": "^3.1.0",
"@types/graphql-upload": "^16.0.7",
"apollo-server-cloud-functions": "^3.13.0",
"cloudinary": "^2.4.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"graphql-tools": "^9.0.1",
"graphql-upload": "^16.0.2",
"jsdom": "^24.1.2",
"mongoose": "^8.5.4",
"next": "14.0.4",
"next-cloudinary": "^6.13.0",
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@graphql-codegen/cli": "^5.0.2",
"@types/jest": "^28.1.6",
"@types/mocha": "^10.0.7",
"dotenv": "16.0.3",
"dotenv-esbuild": "1.1.0",
"dotenv-cli": "7.2.1",
"dotenv-webpack": "8.0.1",
"@graphql-codegen/typescript": "4.0.1",
"@graphql-codegen/typescript-operations": "4.0.1",
"@graphql-codegen/typescript-react-apollo": "4.1.0",
"@graphql-codegen/typescript-resolvers": "2.7.10",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"eslint": "^8",
"eslint-config-next": "14.2.5",
"jest": "^26.6.3",
"jest-environment-jsdom": "^24.0.0",
"jest-environment-jsdom-fourteen": "^1.0.1",
"postcss": "^8",
"tailwindcss": "^3.4.1",
"ts-jest": "^29.1.2",
"typescript": "^5.5.4"
}
}