-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
28 lines (28 loc) · 894 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
{
"name": "fastify-next-starter",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:db-up": "docker run --name pg-dev -d -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=pgdev -p 5432:5432 postgres",
"test:db-up": "docker run --name pg-test -d -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres -e POSTGRES_DB=pgtest -p 5432:5432 postgres",
"generate": "turbo run generate",
"build": "turbo run build",
"dev": "turbo run dev --parallel --force",
"test": "turbo run test",
"lint": "turbo run lint --filter=!schema",
"format": "prettier --write \"**/*.{ts,tsx,md}\""
},
"devDependencies": {
"eslint-config-custom": "workspace:*",
"prettier": "^2.8.4",
"turbo": "^1.7.4"
},
"engines": {
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}