-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 808 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 808 Bytes
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
{
"name": "nowpath",
"private": true,
"version": "0.1.0",
"description": "A private, offline-first web app that helps you follow a path you prepared — back to the present moment.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc --noEmit && vite build && node scripts/gen-sw.mjs",
"preview": "vite preview",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"check:lang": "node scripts/check-language.mjs",
"icons": "node scripts/make-icons.mjs"
},
"dependencies": {
"react": "^19.1.0",
"react-dom": "^19.1.0"
},
"devDependencies": {
"@types/react": "^19.1.0",
"@types/react-dom": "^19.1.0",
"@vitejs/plugin-react": "^4.5.0",
"typescript": "^5.8.0",
"vite": "^6.3.0",
"vitest": "^3.1.0"
}
}