-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.59 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
{
"name": "vip-go-nextjs-boilerplate",
"version": "0.1.0",
"private": true,
"license": "MIT",
"scripts": {
"codegen": "graphql-codegen --config codegen.yml -r dotenv/config",
"codegen:watch": "npm run codegen -- --watch",
"dev": "next dev",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"build": "next build",
"lint": "next lint --ignore-path .gitignore",
"lint:fix": "next lint --fix --ignore-path .gitignore",
"prebuild": "npm run codegen",
"predev": "npm run codegen:watch &",
"start": "next start",
"start:debug": "NODE_OPTIONS='--inspect' next dev",
"test": "jest",
"test:watch": "jest --watch",
"vip:preflight": "npx @automattic/vip-go-preflight-checks"
},
"dependencies": {
"@apollo/client": "3.7.3",
"@graphql-codegen/cli": "2.16.2",
"@graphql-codegen/fragment-matcher": "3.3.3",
"@graphql-codegen/typescript": "2.8.6",
"@graphql-codegen/typescript-operations": "2.5.11",
"@graphql-codegen/typescript-react-apollo": "3.3.7",
"cross-fetch": "3.1.5",
"dotenv": "16.0.3",
"graphql": "16.6.0",
"ioredis": "5.2.4",
"next": "13.1.1",
"react": "18.2.0",
"react-dom": "18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.5",
"@types/react": "18.0.26",
"eslint": "8.31.0",
"eslint-config-next": "13.1.1",
"eslint-plugin-editorconfig": "4.0.2",
"eslint-plugin-jest": "27.2.0",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
}
}