-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 979 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 979 Bytes
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
{
"name": "caldav-ics-sync",
"description": "CalDAV/ICS sync service",
"version": "0.2.0",
"type": "module",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "bun .next/standalone/server.js",
"lint": "eslint .",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\""
},
"dependencies": {
"@types/node": "^25.3.0",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"next": "16.2.6",
"react": "19.2.6",
"react-dom": "19.2.6",
"typescript": "5.9.3"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.2.0",
"eslint": "^10.0.0",
"eslint-config-next": "^16.2.6",
"eslint-plugin-react": "^7.37.5",
"postcss": "^8.5.6",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.0",
"typescript-eslint": "^8.56.0"
}
}