-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
94 lines (94 loc) · 2.39 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
85
86
87
88
89
90
91
92
93
94
{
"name": "netflix",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@magic-sdk/admin": "^1.3.4",
"@urql/core": "^2.4.1",
"axios": "^0.25.0",
"date-fns": "^2.28.0",
"framer-motion": "^5.6.0",
"graphql": "^16.3.0",
"isemail": "^3.2.0",
"jsonwebtoken": "^8.5.1",
"magic-sdk": "^8.0.1",
"next": "12.0.9",
"nextjs-progressbar": "^0.0.13",
"nookies": "^2.5.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"react-icons": "^4.3.1",
"urql": "^2.1.3"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.8",
"@types/node": "17.0.13",
"@types/react": "17.0.38",
"eslint": "^7.12.1",
"eslint-config-next": "^12.0.8",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"git-commit-msg-linter": "^4.0.7",
"husky": "^4.3.8",
"lint-staged": "^12.3.2",
"prettier": "^2.5.1",
"typescript": "4.5.5"
},
"eslintConfig": {
"extends": [
"next/core-web-vitals",
"standard",
"plugin:prettier/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:import/typescript"
],
"plugins": [
"prettier",
"only-warn"
],
"rules": {
"no-unused-vars": "off",
"no-use-before-define": "off",
"no-undef": "off",
"no-console": "error",
"import/order": [
"error",
{
"groups": ["builtin", "external", "internal", ["index", "sibling", "parent", "object"]],
"pathGroupsExcludedImportTypes": ["builtin"],
"pathGroups": [{ "pattern": "@material-ui/**", "group": "external", "position": "after" }],
"newlines-between": "always-and-inside-groups",
"alphabetize": { "order": "asc", "caseInsensitive": true }
}
]
}
},
"prettier": {
"singleQuote": true,
"trailingComma": "all",
"allowParens": "avoid"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --max-warnings=0"
]
}
}