forked from saasfly/saasfly
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.59 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
{
"name": "nextjs-template",
"private": true,
"scripts": {
"build": "turbo build ",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"db:push": "cd ./packages/db/ && bun db:push",
"dev": "turbo dev --parallel",
"dev:web": "turbo dev --parallel --filter !stripe",
"format": "turbo format --continue -- --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"format:fix": "turbo format --continue -- --write --cache --cache-location='node_modules/.cache/.prettiercache' --ignore-path='../../.gitignore'",
"lint": "turbo lint -- --quiet -- --cache --cache-location 'node_modules/.cache/.eslintcache' && manypkg check",
"lint:fix": "turbo lint --continue -- --fix --cache --cache-location 'node_modules/.cache/.eslintcache' ",
"typecheck": "turbo typecheck",
"postinstall": "bun run check-deps",
"check-deps": "check-dependency-version-consistency .",
"gen": "turbo gen --config 'turbo/generators/config.ts'",
"compile-tw-config": "tsc --noEmitOnError tooling/tailwind-config/index.ts --outDir ./",
"tailwind-config-viewer": " tailwind-config-viewer -c ./index.js -o -p 3333"
},
"devDependencies": {
"@turbo/gen": "1.13.3",
"check-dependency-version-consistency": "4.1.0",
"prettier": "3.2.5",
"tailwind-config-viewer": "^2.0.4",
"turbo": "1.13.3",
"typescript": "5.4.5"
},
"engines": {
"node": ">=18"
},
"prettier": "@saasfly/prettier-config",
"workspaces": [
"apps/*",
"packages/*",
"tooling/*"
],
"packageManager": "bun@v1.1.10"
}