-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.31 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.31 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
77
78
79
{
"name": "clawdos",
"version": "0.2.1",
"private": true,
"scripts": {
"deploy": "bash ./setup",
"setup": "node scripts/setup.mjs",
"dev": "next dev",
"build": "next build",
"analyze": "BUNDLE_ANALYZE=browser next build",
"start": "next start -H 0.0.0.0 -p ${PORT:-3000}",
"lint": "eslint",
"db:up": "./scripts/db-up.sh",
"db:down": "./scripts/db-down.sh",
"db:migrate": "node scripts/migrate.mjs",
"db:reset": "./scripts/db-down.sh && ./scripts/db-up.sh && sleep 3 && node scripts/migrate.mjs",
"user:create": "node scripts/create-user.mjs",
"update": "bash scripts/update.sh",
"update:check": "bash scripts/update.sh --check",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@platejs/autoformat": "^52.0.11",
"@platejs/basic-nodes": "^52.0.11",
"@platejs/callout": "^52.0.11",
"@platejs/code-block": "^52.0.11",
"@platejs/dnd": "^52.0.11",
"@platejs/layout": "^52.0.11",
"@platejs/link": "^52.0.11",
"@platejs/list": "^52.0.11",
"@platejs/markdown": "^52.3.1",
"@platejs/media": "^52.0.11",
"@platejs/slash-command": "^52.0.15",
"@platejs/table": "^52.0.11",
"@platejs/toggle": "^52.0.11",
"@xenova/transformers": "^2.17.2",
"argon2": "^0.44.0",
"fast-xml-parser": "^5.3.5",
"iron-session": "^8.0.4",
"next": "16.1.6",
"pg": "^8.18.0",
"platejs": "^52.3.2",
"react": "19.2.3",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "19.2.3",
"zod": "^4.3.6"
},
"devDependencies": {
"@next/bundle-analyzer": "^16.1.6",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/pg": "^8.16.0",
"@types/react": "^19",
"@types/react-dom": "^19",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"lint-staged": "^16.2.7",
"tailwindcss": "^4",
"typescript": "^5",
"vitest": "^4.0.18"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"bash -c 'npx tsc --noEmit'"
]
}
}