forked from jkelin/supercompose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.45 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
{
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"codegen": "graphql-codegen --config codegen.yml",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"lint": "eslint --ext js,jsx,ts,tsx --fix",
"lint:all": "eslint --ext js,jsx,ts,tsx --fix ."
},
"dependencies": {
"@apollo/react-hooks": "^4.0.0",
"@apollo/react-ssr": "^4.0.0",
"@auth0/nextjs-auth0": "^1.3.0",
"@headlessui/react": "^1.1.1",
"@heroicons/react": "^1.0.1",
"@monaco-editor/react": "^4.0.9",
"@panelbear/panelbear-js": "^1.2.0",
"@svgr/webpack": "^5.5.0",
"@tailwindcss/forms": "^0.2.1",
"apollo-boost": "^0.4.9",
"autoprefixer": "^10.2.4",
"axios": "^0.21.1",
"classnames": "^2.2.6",
"date-fns": "^2.19.0",
"graphql": "^15.5.0",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.20",
"next": "10.0.6",
"next-with-apollo": "^5.1.0",
"postcss": "^8.2.4",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.15.1",
"react-modal": "^3.12.1",
"react-syntax-highlighter": "^15.4.3",
"react-transition-group": "^4.4.1",
"subscriptions-transport-ws": "^0.9.18",
"tailwindcss": "^2.0.2",
"uuid": "^8.3.2"
},
"devDependencies": {
"@graphql-codegen/cli": "1.20.1",
"@graphql-codegen/introspection": "1.18.1",
"@graphql-codegen/typescript": "1.20.2",
"@graphql-codegen/typescript-operations": "1.17.14",
"@graphql-codegen/typescript-react-apollo": "2.2.1",
"@types/classnames": "^2.2.11",
"@types/jwt-decode": "^3.1.0",
"@types/lodash": "^4.14.168",
"@types/node": "^14.14.22",
"@types/react": "^17.0.0",
"@types/react-modal": "^3.12.0",
"@types/react-syntax-highlighter": "^13.5.0",
"@types/react-transition-group": "^4.4.1",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.14.1",
"@typescript-eslint/parser": "^4.14.1",
"eslint": "^7.18.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}