-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.52 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.52 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
{
"name": "cntknw",
"private": true,
"version": "0.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview",
"typecheck": "tsc --noEmit && tsc -p tsconfig.e2e.json",
"lint": "eslint src/ e2e/ playwright.config.ts vite.e2e.config.ts",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "playwright test",
"verify": "npm run typecheck && npm run lint && npm run test && npm run test:e2e && npm run build"
},
"dependencies": {
"dexie": "^4.0.11",
"pdfjs-dist": "^4.10.38",
"prosemirror-commands": "^1.7.1",
"prosemirror-history": "^1.5.0",
"prosemirror-keymap": "^1.2.3",
"prosemirror-model": "^1.25.11",
"prosemirror-state": "^1.4.4",
"prosemirror-view": "^1.42.2",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-router": "^8.3.0",
"zod": "^3.25.67",
"zustand": "^5.0.5"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@playwright/test": "^1.62.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.3.0",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^26.1.1",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^9.0.0",
"eslint-plugin-react-hooks": "^7.1.1",
"fake-indexeddb": "^6.2.5",
"globals": "^17.0.0",
"jsdom": "^26.1.0",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vite": "^8.1.1",
"vitest": "^3.2.4"
}
}