-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
29 lines (29 loc) · 985 Bytes
/
package.json
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": "install-script",
"version": "0.1.0",
"private": true,
"license": "MIT",
"engines": {
"node": "^20",
"pnpm": "^8"
},
"dependencies": {
"db-migrate": "^0.11.13",
"db-migrate-pg": "^1.2.2"
},
"scripts": {
"deploy": "cd web && pnpm run deploy",
"server-dev": "cd web && pnpm server-dev",
"create-migration": "db-migrate --config migrations-config.json create",
"create-migration:test": "db-migrate --config migrations-config.json create:test",
"migrate:up": "db-migrate --config migrations-config.json up",
"migrate:test": "db-migrate --config migrations-config.json up:test",
"migrate:up:test": "pnpm migrate:up -e test && pnpm migrate:test -e test",
"migrate:reset:test": "db-migrate --config migrations-config.json -e test reset:test && pnpm migrate:up:test",
"migrate:down": "db-migrate --config migrations-config.json down"
},
"cacheDirectories": [
"web/.next/cache/",
"node_modules/"
]
}