-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
76 lines (76 loc) · 1.71 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
{
"name": "forms.poketwo.net",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"@chakra-ui/icons": "^2.1.1",
"@chakra-ui/react": "^2.8.2",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@formium/client": "^0.1.4",
"@formium/react": "^0.2.0",
"@sendgrid/mail": "^8.1.3",
"date-fns": "^2.28.0",
"discord-oauth2": "^2.7.1",
"framer-motion": "^11.2.12",
"iron-session": "^8.0.2",
"mongodb": "^4.1.2",
"next": "^14.2.4",
"next-absolute-url": "^1.2.2",
"nextjs-progressbar": "^0.0.16",
"node-cache": "^5.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-icons": "^4.2.0",
"react-textarea-autosize": "^8.3.3"
},
"devDependencies": {
"@types/react": "^17.0.19",
"eslint": "7.32.0",
"eslint-config-next": "11.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.1",
"typescript": "^4.3.5"
},
"eslintConfig": {
"extends": [
"plugin:import/recommended",
"plugin:import/typescript",
"next/core-web-vitals",
"prettier"
],
"rules": {
"react/display-name": "off",
"import/order": [
"warn",
{
"groups": [
[
"builtin",
"external"
],
"internal",
[
"parent",
"index",
"sibling"
]
],
"newlines-between": "always",
"alphabetize": {
"order": "asc"
}
}
]
}
},
"prettier": {
"printWidth": 100
}
}