-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.55 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.55 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
{
"name": "edunoza",
"private": true,
"version": "0.3.0",
"type": "module",
"engines": {
"node": ">=22.13.0",
"npm": ">=10.0.0"
},
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build:test": "tsc -b && vite build --mode test",
"build:production": "tsc -b && vite build --mode production",
"preview": "vite preview",
"clean": "node scripts/clean.mjs",
"test": "vitest run && node --test scripts/audit.test.mjs",
"test:coverage": "vitest run --coverage",
"test:e2e": "playwright test",
"lint": "eslint src scripts vite.config.ts vite.config.test.ts vitest.config.ts",
"typecheck": "tsc -b",
"audit": "node scripts/audit.mjs",
"verify": "npm run lint && npm run typecheck && npm run test && npm run build && npm run audit"
},
"dependencies": {
"@pdf-lib/fontkit": "^1.1.1",
"@reduxjs/toolkit": "^2.12.0",
"dexie": "^4.4.4",
"docx": "^9.7.1",
"fflate": "^0.8.3",
"history": "^5.3.0",
"pdf-lib": "^1.17.1",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"react-redux": "^9.3.0",
"react-router-dom": "7.18.3"
},
"devDependencies": {
"@playwright/test": "^1.63.0",
"@types/node": "^24.13.3",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.5",
"@vitest/coverage-v8": "^4.1.10",
"eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^17.9.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.66.0",
"vite": "^8.2.0",
"vitest": "^4.1.10"
}
}