-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.98 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
{
"name": "new-sato-website",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"lint:fix": "next lint --fix",
"format:check": "prettier . --check",
"format": "prettier . --write",
"test:watch": "vitest",
"test": "vitest run",
"fetchTranslations": "tsx fetchTranslations.ts && prettier hooks/translations.json --write",
"prepare": "husky && npm run fetchTranslations"
},
"dependencies": {
"@directus/sdk": "^17.0.0",
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fullcalendar/bootstrap5": "^6.1.15",
"@fullcalendar/core": "^6.1.15",
"@fullcalendar/daygrid": "^6.1.15",
"@fullcalendar/google-calendar": "^6.1.15",
"@fullcalendar/interaction": "^6.1.15",
"@fullcalendar/react": "^6.1.15",
"@fullcalendar/resource": "^6.1.15",
"@fullcalendar/resource-timegrid": "^6.1.15",
"@fullcalendar/resource-timeline": "^6.1.15",
"@fullcalendar/timegrid": "^6.1.15",
"@mui/material": "^5.15.20",
"@types/react-bootstrap": "^0.32.37",
"dotenv": "^16.4.5",
"embla-carousel": "^8.3.0",
"embla-carousel-react": "^8.3.0",
"formik": "^2.4.6",
"next": "^14.2.12",
"prop-types": "^15.8.1",
"react": "^18",
"react-dom": "^18",
"tsx": "^4.17.0",
"yup": "^1.4.0"
},
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@typescript-eslint/eslint-plugin": "^7.16.1",
"@typescript-eslint/parser": "^7.16.1",
"@vitejs/plugin-react": "^4.3.1",
"eslint": "^8",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^18.0.0",
"eslint-config-next": "14.2.4",
"eslint-config-prettier": "^9.1.0",
"fast-check": "^3.20.0",
"husky": "^9.0.11",
"jsdom": "^24.1.0",
"prettier": "3.3.3",
"typescript": "^5",
"vitest": "^2.0.3"
}
}