-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
51 lines (51 loc) · 1.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
{
"name": "website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"eslint": "eslint \"**/*.+(js|jsx|ts|tsx)\"",
"eslint:fix": "eslint --fix \"**/*.+(js|jsx|ts|tsx)\""
},
"dependencies": {
"@emotion/babel-plugin": "^11.10.5",
"@sentry/nextjs": "^7.20.1",
"axios": "^1.1.3",
"babel-plugin-inline-react-svg": "^2.0.1",
"babel-plugin-styled-components": "^2.1.4",
"faunadb": "^4.7.1",
"next": "13.4.12",
"next-auth": "^4.17.0",
"next-images": "^1.7.0",
"react": "18.2.0",
"react-cookie-consent": "^8.0.1",
"react-dom": "18.2.0",
"react-icons": "^4.6.0",
"react-modal": "^3.16.1",
"react-spinners": "^0.13.6",
"react-toggle": "^4.1.2",
"styled-components": "^5.3.11"
},
"devDependencies": {
"@next/eslint-plugin-next": "^13.0.4",
"@types/node": "^20.4.8",
"@types/react": "^18.0.25",
"@types/react-modal": "^3.12.0",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^6.2.1",
"@typescript-eslint/parser": "^6.2.1",
"eslint": "^8.28.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.4.0",
"prettier": "^3.0.1",
"typescript": "^5.1.6"
}
}