-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.25 KB
/
Copy pathpackage.json
File metadata and controls
84 lines (84 loc) · 2.25 KB
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": "team-organizer.web",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"dev": "next",
"build": "next build",
"start": "next start",
"generate": "graphql-codegen --config codegen.yml",
"format": "prettier \"src/**/*\" --write",
"lint": "eslint src/**/* --ext .ts"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true,
"printWidth": 100,
"arrowParens": "always"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"parserOptions": {
"sourceType": "module",
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"eslint:recommended",
"plugin:react/recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended"
],
"plugins": [
"@typescript-eslint"
],
"env": {
"node": true,
"es2020": true,
"jest": true
},
"rules": {
"@typescript-eslint/explicit-function-return-type": 0,
"@typescript-eslint/member-delimiter-style": 0,
"@typescript-eslint/no-non-null-assertion": 0,
"@typescript-eslint/no-explicit-any": 0
}
},
"dependencies": {
"@apollo/client": "^3.0.0-beta.41",
"@apollo/react-ssr": "^4.0.0-beta.1",
"@material-ui/core": "^4.9.7",
"@material-ui/icons": "^4.9.1",
"graphql": "^14.6.0",
"isomorphic-unfetch": "^3.0.0",
"lodash": "^4.17.15",
"next": "^9.3.1",
"prettier": "^2.0.1",
"react": "^16.13.0",
"react-cookie": "^4.0.3",
"react-dom": "^16.13.0",
"react-hook-form": "^5.1.1",
"yup": "^0.28.3"
},
"devDependencies": {
"@graphql-codegen/cli": "^1.13.1",
"@graphql-codegen/fragment-matcher": "1.13.1",
"@graphql-codegen/typescript": "1.13.1",
"@graphql-codegen/typescript-operations": "1.13.1",
"@graphql-codegen/typescript-react-apollo": "1.13.1",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.2",
"@types/react": "^16.9.23",
"@types/react-dom": "^16.9.5",
"@types/yup": "^0.26.34",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.19.0",
"typescript": "^3.8.3"
}
}