-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.58 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": "nextjs-tainwild-graphql-starter",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"generate": "graphql-codegen && (eslint -o /dev/null --fix lib/graphql-generated.ts &)",
"prestart": "yarn generate",
"predev": "yarn generate"
},
"dependencies": {
"@ant-design/icons": "^4.4.0",
"@types/graphql": "^14.5.0",
"@types/lodash": "^4.14.168",
"antd": "^4.10.3",
"apollo-server-micro": "^2.19.1",
"autoprefixer": "^10.2.1",
"graphql": "^15.5.0",
"graphql-request": "^3.4.0",
"lodash": "^4.17.20",
"micro-cors": "^0.1.1",
"mongodb": "^3.6.3",
"next": "10.0.5",
"next-iron-session": "^4.1.10",
"postcss": "^8.2.4",
"pubnub": "^4.29.11",
"react": "17.0.1",
"react-dom": "17.0.1",
"react-hook-form": "^6.14.2",
"react-query": "^3.5.16",
"styled-components": "^5.2.1",
"tailwindcss": "^2.0.2",
"twin.macro": "^2.0.8"
},
"prettier": "@intelie/prettier-config",
"eslintConfig": {
"extends": "@intelie",
"rules": {
"react/react-in-jsx-scope": "off",
"no-use-before-define": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off"
}
},
"babelMacros": {
"twin": {
"preset": "styled-components"
}
},
"devDependencies": {
"@graphql-codegen/cli": "^1.20.0",
"@graphql-codegen/named-operations-object": "^1.17.9",
"@graphql-codegen/typescript-graphql-request": "^3.0.0",
"@graphql-codegen/typescript-operations": "^1.17.13",
"@graphql-codegen/typescript-react-query": "^1.0.0",
"@graphql-codegen/typescript-resolvers": "^1.18.1",
"@intelie/eslint-config": "^4.3.0",
"@intelie/prettier-config": "2.1.0",
"@next/bundle-analyzer": "^10.0.5",
"@types/mongodb": "^3.6.3",
"@types/next": "^9.0.0",
"@types/react": "^17.0.0",
"@types/styled-components": "^5.1.7",
"@typescript-eslint/eslint-plugin": "4.12.0",
"@typescript-eslint/parser": "4.12.0",
"babel-eslint": "10.1.0",
"eslint": "7.17.0",
"eslint-config-prettier": "6.11.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jest": "24.1.3",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "3.3.1",
"eslint-plugin-promise": "4.2.1",
"eslint-plugin-react": "7.22.0",
"eslint-plugin-react-hooks": "4.2.0",
"eslint-plugin-standard": "4.0.1",
"jest": "^26.6.3",
"minimist": ">=0.2.1",
"prettier-eslint": "11.0.0"
}
}