-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
127 lines (127 loc) · 3.49 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"private": true,
"sideEffects": false,
"scripts": {
"build": "remix build",
"dev": "remix dev",
"lint": "eslint app",
"lint:fix": "eslint app --fix",
"prettier": "prettier app",
"prettier:fix": "prettier app --write"
},
"dependencies": {
"@chakra-ui/react": "^2.3.4",
"@chakra-ui/styled-system": "^2.3.3",
"@emotion/react": "^11.10.4",
"@emotion/server": "^11.10.0",
"@emotion/styled": "^11.10.4",
"@remix-run/node": "^1.7.2",
"@remix-run/react": "^1.7.2",
"@remix-run/vercel": "^1.7.2",
"@vercel/node": "^2.4.4",
"axios": "^0.27.2",
"dayjs": "^1.11.5",
"envalid": "^7.3.1",
"framer-motion": "^6.5.1",
"neo4j-driver": "^5.0.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiny-invariant": "^1.2.0",
"zod": "^3.19.1"
},
"devDependencies": {
"@babel/core": "^7.19.3",
"@remix-run/dev": "^1.7.2",
"@remix-run/eslint-config": "^1.7.2",
"@remix-run/serve": "^1.7.2",
"@types/react": "^18.0.15",
"@types/react-dom": "^18.0.6",
"eslint": "^8.23.1",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.7.1",
"prettier-plugin-organize-imports": "^3.1.1",
"typescript": "4.8.4"
},
"engines": {
"node": ">=16"
},
"prettier": {
"bracketSpacing": false,
"tabWidth": 2,
"arrowParens": "avoid",
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
},
"eslintConfig": {
"extends": [
"@remix-run/eslint-config",
"@remix-run/eslint-config/node",
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"prettier"
],
"parserOptions": {
"project": [
"./tsconfig.json"
]
},
"rules": {
"curly": "warn",
"no-param-reassign": [
"warn",
{
"props": true
}
],
"no-console": "warn",
"no-restricted-imports": [
"warn",
{
"paths": [
{
"name": ".",
"message": "Auto-import has pulled in the wrong path. Please use the file path import"
}
],
"patterns": [
{
"group": [
"../*"
],
"message": "Importing from a parent can lead to circular dependencies. Please use '~/' imports"
}
]
}
],
"object-shorthand": "warn",
"prefer-template": "warn",
"no-debugger": "warn",
"react/jsx-boolean-value": "warn",
"react/jsx-fragments": "warn",
"react/jsx-no-useless-fragment": [
"warn",
{
"allowExpressions": true
}
],
"react/prop-types": "off",
"react/self-closing-comp": "warn",
"@typescript-eslint/await-thenable": "warn",
"@typescript-eslint/camelcase": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-explicit-any": "off",
"@typescript-eslint/no-for-in-array": "warn",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "warn",
"@typescript-eslint/no-unnecessary-condition": "warn",
"@typescript-eslint/no-unnecessary-type-assertion": "warn",
"@typescript-eslint/require-await": "warn",
"@typescript-eslint/return-await": "warn"
}
}
}