-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.64 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.64 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pikas-template",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"build:app": "turbo build --filter=@pikas-template/app...",
"build:docker": "COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 docker-compose -f docker-compose.yml build --parallel",
"build:packages": "turbo build --filter=./packages/*",
"clean": "turbo clean && rm -rf node_modules",
"db:migrate:deploy": "turbo db:migrate:deploy",
"db:migrate:dev": "turbo db:migrate:dev",
"db:push": "turbo db:push",
"db:seed": "turbo db:seed",
"dev": "turbo dev --parallel",
"dev:app": "turbo dev --parallel --filter=@pikas-template/app...",
"dev:packages": "turbo dev --parallel --filter=./packages/*",
"format": "turbo format",
"generate": "turbo generate",
"lint": "turbo lint",
"prepare": "husky install",
"start": "turbo start --parallel",
"start:app": "turbo start --filter=@pikas-template/app",
"start:docker": "docker-compose -f docker-compose.yml up -d",
"start:packages": "turbo start --parallel --filter=./packages/*",
"test": "turbo test"
},
"devDependencies": {
"@pikas-template/prettier": "workspace:*",
"eslint": "^8.34.0",
"eslint-config-custom": "workspace:*",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"tsx": "^3.12.3",
"turbo": "^1.8.2"
},
"packageManager": "pnpm@7.12.2",
"engines": {
"node": ">=14.0.0",
"npm": ">=7.0.0"
},
"prisma": {
"schema": "packages/database/prisma/schema.prisma",
"seed": "tsx packages/database/src/seed.ts"
}
}