-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 841 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 841 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
30
{
"name": "biblememory",
"version": "1.0.0",
"description": "Modern Bible Memory App - Offline-first PWA with spaced repetition",
"private": true,
"scripts": {
"dev": "npm run dev --prefix client",
"build": "npm install --prefix client && npm run build --prefix client",
"preview": "npm run preview --prefix client",
"install:client": "npm install --prefix client",
"migrate": "cd server && php api/migrate.php",
"db:reset": "rm -f server/api/db.sqlite && npm run migrate",
"db:open": "sqlite3 server/api/db.sqlite"
},
"repository": {
"type": "git",
"url": "https://github.com/miking7/biblememory.git"
},
"keywords": [
"bible",
"memory",
"spaced-repetition",
"offline-first",
"pwa",
"vue",
"typescript"
],
"author": "Michael",
"license": "UNLICENSED"
}