forked from elsa-data/elsa-data
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.88 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
{
"name": "elsa-data",
"scripts": {
"install:backend": "cd application/backend && bun install",
"install:frontend": "cd application/frontend && npm install",
"install:e2e": "cd e2e && npm install",
"postinstall": "run-p install:*",
"migrate-db": "cd application/backend && gel migration create || true && gel migrate",
"init-db": "cd application/backend && gel project init",
"edgetypes": "cd application/backend && npm run edgetypes",
"frontend": "cd application/frontend && npm run dev:build",
"backend:watch:mac": "cd application/backend && npm run watch:mac",
"backend:watch:linux": "cd application/backend && npm run watch:linux",
"backend:watch:aws": "cd application/backend && npm run watch:aws",
"backend:dev:mac": "cd application/backend && npm run dev:mac",
"backend:dev:linux": "cd application/backend && npm run dev:linux",
"backend:dev:aws": "cd application/backend && npm run dev:aws",
"start": "run-script-os",
"start:macos": "npm run frontend && npm run edgetypes && npm run backend:dev:mac",
"start:linux": "npm run frontend && npm run edgetypes && npm run backend:dev:linux",
"start:aws": "npm run frontend && npm run edgetypes && npm run backend:dev:aws",
"start:watch:mac": "npm run frontend && npm run edgetypes && npm run backend:watch:mac",
"start:watch:linux": "npm run frontend && npm run edgetypes && npm run backend:watch:linux",
"start:watch:aws": "npm run frontend && npm run edgetypes && npm run backend:watch:aws"
},
"simple-git-hooks": {
"pre-commit": "cd application/backend; bunx pretty-quick --staged"
},
"devDependencies": {
"npm-run-all": "4.1.5",
"run-script-os": "1.1.6",
"simple-git-hooks": "2.13.0"
},
"packageManager": "pnpm@10.8.0+sha512.0e82714d1b5b43c74610193cb20734897c1d00de89d0e18420aebc5977fa13d780a9cb05734624e81ebd81cc876cd464794850641c48b9544326b5622ca29971"
}