-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.78 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
{
"name": "tf-150",
"version": "0.1.0",
"engines": {
"node": ">=18"
},
"private": true,
"scripts": {
"dev": "NODE_OPTIONS='--dns-result-order=ipv4first' next dev",
"build": "next build",
"start": "next start",
"lint": "prettier -c app components lib models utils && next lint",
"export": "next export",
"build-start": "next build && cp -r .next/static/ .next/standalone/.next && node .next/standalone/server.js"
},
"dependencies": {
"@fullcalendar/core": "^6.1.11",
"@fullcalendar/daygrid": "^6.1.11",
"@fullcalendar/react": "^6.1.11",
"classnames": "^2.5.1",
"content-disposition": "^0.5.4",
"framer-motion": "^11.2.0",
"googleapis": "^137.1.0",
"marked": "^12.0.2",
"next": "^14.2.3",
"next-auth": "^4.24.7",
"qs": "^6.12.1",
"react": "^18.3.1",
"react-calendar": "^5.0.0",
"react-dom": "^18.3.1",
"react-google-drive-picker": "^1.2.2",
"react-icons": "^5.2.1",
"sharp": "^0.32.6"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9",
"@types/content-disposition": "^0.5.6",
"@types/gapi": "^0.0.47",
"@types/marked": "^6.0.0",
"@types/node": "20.12.12",
"@types/qs": "^6.9.7",
"@types/react": "18.3.2",
"@types/react-textfit": "^1.1.0",
"@types/react-window": "^1.8.5",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"autoprefixer": "^10.4.8",
"encoding": "^0.1.13",
"eslint": "8",
"eslint-config-next": "^14.2.3",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"postcss": "^8.4.16",
"prettier": "^3.0.3",
"prettier-plugin-tailwindcss": "^0.5.4",
"tailwindcss": "^3.1.8",
"typescript": "5.4.5"
}
}