-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.57 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
{
"name": "calendar",
"version": "0.1.0",
"description": "FINOS Community Calendar",
"license": "Apache-2.0",
"type": "module",
"engines": {
"node": "^20.11.0",
"npm": "^10.3.0"
},
"scripts": {
"start": "npm run get-events && vite",
"build": "npm run lint && vite build",
"preview": "vite preview",
"lint": "eslint ./src --ext js,jsx --report-unused-disable-directives --max-warnings 0",
"lint-fix": "npm run lint -- --fix",
"get-events": "node ./scripts/googleapi2events.js",
"getEvents": "npm run get-events",
"test": "vitest"
},
"dependencies": {
"@fullcalendar/core": "^6.1.10",
"@fullcalendar/daygrid": "^6.1.10",
"@fullcalendar/icalendar": "^6.1.10",
"@fullcalendar/interaction": "^6.1.10",
"@fullcalendar/react": "^6.1.10",
"@fullcalendar/rrule": "^6.1.10",
"@fullcalendar/timegrid": "^6.1.10",
"@mdi/js": "^7.3.67",
"@mdi/react": "^1.6.1",
"googleapis": "^137.0.0",
"html-react-parser": "^5.0.7",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/react": "^18.2.42",
"@types/react-dom": "^18.2.17",
"@vitejs/plugin-react": "^4.0.3",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.3",
"html-to-text": "^9.0.5",
"ical-generator": "^8.0.0",
"sort-imports": "^1.1.0",
"vite": "^5.0.5",
"vitest": "^1.2.1"
}
}