-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nifty-web",
"version": "0.1.0",
"private": true,
"scripts": {
"prepare": "husky install",
"lint": "eslint app source",
"typecheck": "tsc --noEmit",
"introspect:staging": "SUBGRAPH_API_ENDPOINT=$(grep SUBGRAPH_API_ENDPOINT .env.development | cut -d '=' -f2) && mkdir -p ./source/subgraph && graphql-inspector introspect $SUBGRAPH_API_ENDPOINT --write ./source/subgraph/schema.json",
"generate-types": "graphql-codegen",
"prepare:staging": "npm run introspect:staging && npm run generate-types",
"watch:staging": "npm run prepare:staging -- -- --watch",
"staticcheck": "npm run prepare:staging && npm run lint && npm run typecheck",
"test:unit": "jest",
"test:end-to-end": "playwright test",
"test": "npm run test:unit && npm run test:end-to-end",
"check": "npm run staticcheck && npm run test",
"start:development": "trap 'kill $PID; exit' INT && npm run watch:staging & BGPID=$! && next dev",
"build:production": "next build",
"start:production": "npm run build:production && next start",
"export:production": "next export"
},
"dependencies": {
"@apollo/client": "3.7.1",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@fontsource/public-sans": "4.5.11",
"@hookform/resolvers": "2.9.10",
"@mui/icons-material": "5.11.0",
"@mui/joy": "5.0.0-alpha.58",
"@tanstack/react-query": "4.14.6",
"axios": "1.1.3",
"ethers": "5.7.2",
"framer-motion": "7.6.1",
"graphql": "16.6.0",
"immer": "9.0.15",
"next": "13.0.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-hook-form": "7.39.4",
"react-use": "17.4.0",
"validator": "13.7.0",
"wagmi": "0.8.7",
"zod": "3.19.1"
},
"devDependencies": {
"@graphql-codegen/cli": "2.14.1",
"@graphql-codegen/client-preset": "1.1.5",
"@graphql-codegen/introspection": "2.2.1",
"@graphql-eslint/eslint-plugin": "3.13.1",
"@graphql-inspector/cli": "3.4.0",
"@playwright/test": "1.28.1",
"@testing-library/react": "13.4.0",
"@types/jest": "29.2.3",
"@types/node": "18.11.10",
"@types/react": "18.0.25",
"@types/react-dom": "18.0.9",
"@types/validator": "13.7.10",
"@typescript-eslint/eslint-plugin": "5.45.0",
"eslint": "8.28.0",
"eslint-config-next": "13.0.7",
"eslint-plugin-jest": "27.1.5",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.31.11",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.9.1",
"graphql-config": "4.3.6",
"husky": "8.0.2",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"prettier": "2.7.1",
"ts-jest": "29.0.3",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}