-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.66 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
{
"name": "agenda-pessoal",
"private": true,
"version": "1.0.0",
"type": "module",
"description": "Agenda pessoal offline — calendário mensal e gestão de compromissos no navegador.",
"scripts": {
"dev": "concurrently --kill-others --names api,web \"npm:dev:api\" \"npm:dev:web\"",
"dev:api": "node --watch server/index.mjs",
"dev:web": "vite",
"start": "node server/index.mjs",
"backup": "node scripts/backup.mjs",
"remote:start": "npm run build && npm run backup && node scripts/start-remote.mjs",
"remote:stop": "node scripts/stop-remote.mjs",
"remote:install-service": "node scripts/install-user-service.mjs",
"build": "tsc -b && vite build",
"preview": "vite preview",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"typecheck": "tsc -b --noEmit false --emitDeclarationOnly false"
},
"dependencies": {
"express": "^5.2.1",
"react": "^19.2.8",
"react-dom": "^19.2.8"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@testing-library/jest-dom": "^7.0.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.6",
"@types/react": "^19.2.18",
"@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.1.0",
"@vitest/coverage-v8": "^4.1.11",
"concurrently": "^10.0.5",
"eslint": "^10.9.0",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.4",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.67.0",
"vite": "^8.2.2",
"vitest": "^4.1.11"
}
}