-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 909 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 909 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
{
"name": "keystone",
"version": "1.0.0",
"private": true,
"description": "KeyStone - Personal finance management with bank reconciliation, expense tracking, and investment monitoring",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev -w packages/server",
"dev:client": "npm run dev -w packages/client",
"build": "npm run build:client && npm run build:server",
"build:server": "npm run build -w packages/server",
"build:client": "npm run build -w packages/client",
"start": "NODE_ENV=production node packages/server/dist/index.js",
"db:push": "npm run db:push -w packages/server",
"db:studio": "npm run db:studio -w packages/server"
},
"devDependencies": {
"concurrently": "^8.2.2",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18"
}
}