-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.57 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.57 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
80
81
82
83
84
{
"name": "acto",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"dev": "next dev --turbopack",
"build": "next build --webpack",
"preview-build": "NEXT_PREVIEW_BUILD=true next build",
"start": "next start",
"verify": "prettier --check . && eslint . && npx tsc --noEmit",
"check": "prettier --write . && eslint . --fix && npx tsc --noEmit && vitest run && npx playwright test --reporter=list",
"deps": "npx npm-check-updates",
"deps:update": "npx npm-check-updates -u && npm install",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:quick": "vitest related --run --passWithNoTests",
"nuke": "rm -rf node_modules package-lock.json .next .next-validation",
"test:e2e": "npx playwright test --reporter=list",
"init:dev": "npx husky install && npx playwright install"
},
"dependencies": {
"@ducanh2912/next-pwa": "^10.2.9",
"@google-cloud/text-to-speech": "^6.4.0",
"@google/genai": "^1.34.0",
"@heroicons/react": "^2.2.0",
"better-sqlite3": "^12.5.0",
"immer": "^11.1.0",
"jszip": "^3.10.1",
"next": "16.1.0",
"next-auth": "^4.24.13",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-full-screen": "^1.1.1",
"tailwindcss": "^3.4.17",
"zod": "^4.2.1",
"zustand": "^5.0.9",
"zustand-xs": "^0.0.1"
},
"devDependencies": {
"@flydotio/dockerfile": "^0.7.10",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@types/better-sqlite3": "^7.6.13",
"@types/jszip": "^3.4.1",
"@types/node": "^25.0.3",
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.50.0",
"@typescript-eslint/parser": "^8.50.0",
"@vitejs/plugin-react": "^5.1.2",
"autoprefixer": "^10.4.23",
"eslint": "^9.39.2",
"eslint-config-next": "16.1.0",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"jsdom": "^27.3.0",
"lint-staged": "^16.2.7",
"msw": "^2.12.4",
"node-mocks-http": "^1.17.2",
"npm-check-updates": "^19.2.0",
"playwright": "^1.57.0",
"postcss": "^8.5.6",
"prettier": "^3.7.4",
"supertest": "^7.1.4",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0",
"vitest": "^4.0.16",
"vitest-dom": "^0.1.1",
"wait-on": "^9.0.3"
},
"overrides": {
"@types/react": "19.2.7",
"@types/react-dom": "19.2.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"npm run test:quick"
]
}
}