-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.39 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
{
"name": "oweek-genealogy",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"download-sheets": "tsx scripts/download-sheets.ts",
"download-surface": "tsx scripts/download-surface.ts",
"upload-to-kv": "tsx scripts/upload-to-kv.ts",
"delete-families": "cli-confirm \"Do you really want to delete a family? This action cannot be undone.\" && tsx scripts/delete-families.ts",
"nuke-kv": "cli-confirm \"Do you really want to nuke kv?\" && tsx scripts/nuke-kv.ts"
},
"dependencies": {
"@ant-design/icons": "^4.7.0",
"@next/bundle-analyzer": "^13.4.19",
"@vercel/analytics": "^1.1.0",
"@vercel/kv": "^1.0.1",
"@vercel/speed-insights": "^1.0.10",
"antd": "^4.23.6",
"googleapis": "^108.0.0",
"md5": "^2.3.0",
"next": "^14.2.3",
"next-compose-plugins": "^2.2.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-organizational-chart": "^2.2.0",
"ts-node": "^10.9.1",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/md5": "^2.3.5",
"@types/node": "^18.11.3",
"@types/react": "18.0.21",
"@types/react-dom": "18.0.6",
"@types/uuid": "^9.0.8",
"cli-confirm": "^1.0.1",
"dotenv": "^16.4.5",
"eslint": "8.26.0",
"eslint-config-next": "12.3.1",
"tsx": "^4.7.2",
"typescript": "^4.8.4"
}
}