-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
66 lines (66 loc) · 2.01 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
{
"name": "web",
"version": "1.0.0",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"type-check": "tsc",
"dev:debug": "NODE_OPTIONS='--inspect' next dev",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"prepare": "husky install",
"graphql:pull-schema": "npx apollo service:download --endpoint=https://api.dogehouse.online/graphql graphql-schema.json",
"graphql:generate-types": "npx apollo codegen:generate --localSchemaFile=graphql-schema.json --target=typescript --tagName=gql --outputFlat './src/__generated__'"
},
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint src --fix"
]
},
"dependencies": {
"@apollo/client": "^3.3.19",
"@hookform/resolvers": "^2.5.2",
"@material-ui/core": "^4.11.4",
"@types/graphql": "^14.5.0",
"@types/next-seo": "^2.1.2",
"@types/nprogress": "^0.2.0",
"@types/styled-components": "^5.1.9",
"@types/url-parse": "^1.4.3",
"apollo": "^2.33.4",
"build-url": "^6.0.1",
"eslint-plugin-radar": "^0.2.1",
"eslint-plugin-react-hooks": "^4.2.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-unused-imports": "^1.1.1",
"graphql": "^15.5.0",
"next": "latest",
"next-seo": "^4.24.0",
"nprogress": "^0.2.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-hook-form": "^7.7.1",
"react-redux": "^7.2.4",
"redux": "^4.1.0",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.0",
"subscriptions-transport-ws": "^0.9.18",
"url-parse": "^1.5.1",
"ws": "^7.4.6",
"yup": "^0.32.9"
},
"devDependencies": {
"@types/node": "^12.12.21",
"@types/react": "^17.0.2",
"@types/react-dom": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-plugin-react": "^7.24.0",
"eslint-plugin-unicorn": "^32.0.1",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"typescript": "4.0"
},
"license": "MIT"
}