-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.73 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
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ts-dashboard",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"dev": "next dev",
"netlify-dev": "NEXT_PUBLIC_NETLIFY_ENV=development concurrently \"yarn netlify-cms-proxy-server\" \"yarn dev\"",
"build": "yarn generate && next build",
"start": "next start",
"typecheck": "tsc",
"lint:nofix": "eslint --ignore-path .gitignore \"*/**/*.{js,jsx,ts,tsx}\"",
"lint": "yarn lint:nofix --quiet --fix",
"format": "prettier --ignore-path .gitignore --write \"{*,**/*}.{ts,tsx,js,jsx,json,yml,yaml,md,css}\"",
"prepare": "yarn generate && husky install",
"generate": "graphql-codegen --config=codegen.yml"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@babel/preset-react": "^7.16.7",
"@graphql-codegen/add": "^3.1.1",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.7",
"@graphql-codegen/typescript-operations": "^2.3.4",
"@graphql-codegen/typescript-urql": "^3.5.5",
"@next/eslint-plugin-next": "^12.1.0",
"@types/netlify-identity-widget": "^1.9.3",
"@types/node": "^17.0.21",
"@types/react": "^17.0.39",
"@types/react-dom": "^17.0.14",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"concurrently": "^7.0.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.29.3",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"frontmatter-markdown-loader": "^3.6.3",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"netlify-cms-proxy-server": "^1.3.23",
"prettier": "^2.5.1"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.7",
"@chakra-ui/react": "^1.8.6",
"@davatar/react": "^1.9.0",
"@emotion/react": "^11.8.1",
"@emotion/server": "^11.4.0",
"@emotion/styled": "^11.8.1",
"@gnosis.pm/safe-apps-web3modal": "^10.0.0",
"@typeform/embed-react": "^1.9.0",
"ethers": "^5.5.4",
"fast-memoize": "^2.5.2",
"framer-motion": "^6.2.8",
"graphql": "^16.3.0",
"graphql-tag": "^2.12.6",
"netlify-cms-app": "^2.15.70",
"netlify-identity-widget": "^1.9.2",
"next": "^12.1.0",
"next-urql": "^3.3.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-is": "^17.0.2",
"react-markdown": "^8.0.0",
"react-vis": "^1.11.7",
"typescript": "^4.6.2",
"urql": "^2.2.0",
"web3modal": "^1.9.5"
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,yml,yaml,md}": [
"prettier --write"
]
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
}
}