-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.26 KB
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
{
"name": "survey-walk",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "prettier -w app && eslint",
"type:check": "tsc --noEmit",
"qa": "npm run lint && npm run type:check",
"type:check:open": "tsx scripts/open-type-errors.ts",
"history": "tsx scripts/gather-history.ts"
},
"type": "module",
"dependencies": {
"@react-aria/interactions": "^3.27.0",
"date-fns": "^4.1.0",
"exceljs": "^4.4.0",
"flyonui": "^2.4.1",
"immer": "^11.1.3",
"next": "16.1.6",
"react": "19.2.3",
"react-aria-components": "^1.15.1",
"react-dom": "19.2.3",
"tsc": "^2.0.4",
"use-immer": "^0.11.0",
"usehooks-ts": "^3.1.1"
},
"devDependencies": {
"@iconify-json/tabler": "^1.2.26",
"@iconify/tailwind4": "^1.2.1",
"@tailwindcss/postcss": "^4",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"csv-parser": "^3.2.0",
"csv-writer": "^1.6.0",
"dotenv": "^17.3.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"googleapis": "^171.4.0",
"p-ratelimit": "^1.0.1",
"prettier": "^3.8.1",
"tailwindcss": "^4",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}