-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
51 lines (50 loc) · 1.88 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "zagy-blog",
"private": true,
"packageManager": "pnpm@7.13.0",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "turbo build",
"pre-install":"pnpm --filter=zagy-blog install",
"start:nextjs": "cd ./apps/nextjs && pnpm with-env next start",
"start:nextjs:prod": "cd ./apps/nextjs && pnpm next start",
"start:express": "pnpm --filter=express start",
"start:express:prod": "node ./apps/express/dist/index.js",
"dev:nextjs": "turbo run dev --filter=nextjs",
"dev:express": "turbo run dev --filter=express",
"test:express": "turbo run test --filter=express",
"install:nextjs": "pnpm --filter !express install --store=node_modules/.pnpm-store",
"install:express": "pnpm run pre-install && pnpm --filter=express... install --store=node_modules/.pnpm-store",
"build:express": "turbo run build --filter=express",
"build:nextjs": "turbo run build --filter=nextjs",
"deploy:express": "pnpm run install:express && pnpm run build:express && pnpm run start:express:prod",
"clean": "rm -rf node_modules",
"clean:workspaces": "turbo clean",
"db:generate": "turbo db:generate",
"db:push": "turbo db:push db:generate",
"db:studio": "turbo db:studio",
"dev": "turbo dev --parallel",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"FIXME:lint": "turbo lint && manypkg check",
"type-check": "turbo type-check"
},
"dependencies": {
"@ianvs/prettier-plugin-sort-imports": "^3.7.1",
"@manypkg/cli": "^0.20.0",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tsup": "^6.5.0",
"turbo": "^1.7.0",
"typescript": "^4.9.4"
},
"devDependencies": {
"@types/node": "^18.0.0"
}
}