-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 923 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 923 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
{
"name": "groundup",
"workspaces": [
"packages/*"
],
"version": "0.1.0",
"private": true,
"scripts": {
"app:dev": "cd packages/app && npm run dev",
"api:dev": "cd packages/api && npm run dev",
"api:lint": "cd packages/api && npm run lint",
"db:migrate": "cd packages/common && npx drizzle-kit migrate",
"db:generate": "cd packages/common && npx drizzle-kit generate",
"docs:dev": "cd packages/docs && npm run dev",
"dev": "npm run app:dev ",
"prettier": "npx prettier -w packages/*/src ",
"build:app": "cd packages/app && next build",
"build:api": "cd packages/api && npm run build",
"build": "npm run build:api && npm run build:app",
"lint": "cd packages/app && npm run lint",
"rename:query-to-query": "node scripts/rename-query-to-query.js"
},
"dependencies": {
"drizzle-kit": "^0.30.0",
"drizzle-orm": "^0.40.0",
"wkx": "^0.5.0"
}
}