-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.79 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
{
"name": "neno",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "./node_modules/.bin/prettier --write \"src/**/*.{js,jsx,ts,tsx,json,css,scss,md}\"",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"check-lint": "eslint . --ext ts --ext tsx --ext js",
"format": "prettier --write .",
"codegen": "graphql-codegen --config codegen.js",
"codegen:clean": "yarn codegen:clean-generated && yarn codegen:download && yarn codegen",
"codegen:clean-generated": "rm -rf src/lib/graphql/**/__generated__ src/lib/graphql/globalTypes.ts src/shared/__generated__",
"codegen:download": "apollo client:download-schema --config=src/lib/graphql/apollo.schema.config.js src/lib/graphql/schema.graphql"
},
"dependencies": {
"@apollo/client": "^3.5.5",
"@apollo/react-hooks": "^4.0.0",
"@auth0/nextjs-auth0": "^1.6.1",
"@chakra-ui/react": "^1.8.6",
"@emotion/react": "^11.8.2",
"@emotion/styled": "^11",
"@fontsource/inter": "^4.5.5",
"@fontsource/montserrat": "^4.5.5",
"@fontsource/pangolin": "^4.5.3",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/introspection": "^2.1.1",
"@graphql-codegen/near-operation-file-preset": "^2.2.7",
"@graphql-codegen/typescript": "^2.4.6",
"@graphql-codegen/typescript-operations": "^2.3.3",
"@graphql-codegen/typescript-react-apollo": "^3.2.9",
"@types/jsonwebtoken": "^8.5.8",
"@xstate/react": "^2.0.1",
"apollo-link-ws": "^1.0.20",
"feather-icons": "^4.28.0",
"formik": "^2.2.9",
"framer-motion": "^6",
"graphql": "^16.0.1",
"graphql-ws": "^5.6.2",
"isomorphic-unfetch": "^3.1.0",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"next": "12.1.0",
"next-auth": "^4.2.1",
"object-hash": "^2.2.0",
"ramda": "^0.27.1",
"react": "17.0.2",
"react-circular-menu": "^2.2.4",
"react-dnd": "^14.0.4",
"react-dnd-html5-backend": "^14.0.2",
"react-dom": "17.0.2",
"react-modal": "^3.14.4",
"react-timer-hook": "^3.0.5",
"subscriptions-transport-ws": "^0.11.0",
"uuid": "^8.3.2",
"xstate": "^4.30.5"
},
"devDependencies": {
"@apollo/link-schema": "^2.0.0-beta.3",
"@types/node": "17.0.21",
"@types/object-hash": "^2.2.1",
"@types/react": "17.0.39",
"@types/react-modal": "^3.13.1",
"@types/styled-components": "^5.1.24",
"@types/uuid": "^8.3.4",
"autoprefixer": "^10.4.0",
"eslint": "8.10.0",
"eslint-config-next": "12.1.0",
"hasura-cli": "^2.2.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.1",
"typescript": "4.6.2"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"yarn eslint",
"yarn prettier --write"
]
}
}