-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.6 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.6 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "nextjs",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "sh ./scripts/devStart.sh",
"build": "next build",
"start:frontend": "next start",
"start:typesense": "docker-compose up -d typesense",
"start:all": "pnpm run start:frontend & pnpm run start:typesense",
"start": "pnpm run start:frontend",
"preview": "opennextjs-cloudflare build && opennextjs-cloudflare preview",
"deploy": "opennextjs-cloudflare build && opennextjs-cloudflare deploy",
"cf-typegen": "wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts",
"cloudflare:updateSecrets": "node ./scripts/cloudflare/updateSecrets.js",
"lint": "next lint",
"format": "prettier --check . --config .prettierrc.json",
"format:fix": "prettier --write . --max-warnings=0 --config .prettierrc.json",
"eslint": "eslint --fix . --ext .ts,.tsx",
"tsc": "tsc -p tsconfig.json --noEmit",
"prepare": "husky",
"security:audit": "pnpm audit",
"security:outdated": "pnpm outdated",
"typesense:generateKey": "node ./scripts/typesense/generateSearchKey.js",
"typesense:uploadMasterList": "node ./scripts/typesense/uploadMaster.js",
"typesense:listKeys": "node ./scripts/typesense/listKeys.js"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@types/file-saver": "^2.0.7",
"classnames": "^2.5.1",
"dexie": "^4.0.11",
"dexie-react-hooks": "^1.1.7",
"dotenv": "^16.5.0",
"file-saver": "^2.0.5",
"idb": "^8.0.3",
"idb-keyval": "^6.2.2",
"lucide-react": "^0.511.0",
"next": "15.3.2",
"next-auth": "5.0.0-beta.28",
"nextra": "^4.2.17",
"nextra-theme-docs": "^4.2.17",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-fast-compare": "^3.2.2",
"react-markdown": "^10.1.0",
"sass": "^1.89.0",
"typesense": "^2.0.3",
"use-sync-external-store": "^1.5.0",
"yaml": "^2.8.0",
"zustand": "^5.0.4"
},
"devDependencies": {
"@opennextjs/cloudflare": "^1.0.3",
"@tailwindcss/postcss": "^4.1.7",
"@tailwindcss/typography": "^0.5.16",
"@types/node": "^22.15.19",
"@types/react": "^19.1.4",
"@types/react-dom": "^19.1.5",
"clsx": "^2.1.1",
"daisyui": "5.0.35",
"eslint": "9.27.0",
"eslint-config-next": "15.3.2",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-unused-imports": "^4.1.4",
"husky": "^9.1.7",
"postcss": "^8.5.3",
"prettier": "^3.5.3",
"prettier-plugin-tailwindcss": "^0.6.11",
"tailwindcss": "^4.1.7",
"typescript": "^5.8.3",
"wrangler": "^4.15.2"
}
}