-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.29 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
{
"name": "gramflow",
"private": true,
"engines": {
"node": ">=18.17.0"
},
"packageManager": "[email protected]",
"scripts": {
"build": "turbo build",
"clean": "git clean -xdf node_modules",
"clean:workspaces": "turbo clean",
"start": "turbo start",
"db:generate": "turbo db:generate",
"db:migrate": "turbo db:migrate",
"db:migrate-prod": "turbo db:migrate-prod",
"db:push": "turbo db:push db:generate",
"dev": "doppler run -- turbo dev --parallel",
"dev-web": "turbo dev --filter web",
"dev-admin": "turbo dev --filter admin",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"lint": "turbo lint && manypkg check",
"lint:fix": "turbo lint:fix && manypkg fix",
"type-check": "turbo type-check",
"test": "turbo test",
"email-dev": "email preview ./emails",
"sync": "git pull public main && pnpm i"
},
"dependencies": {
"@gramflow/eslint-config": "workspace:*",
"@ianvs/prettier-plugin-sort-imports": "^3.7.2",
"@manypkg/cli": "^0.20.0",
"@types/prettier": "^2.7.3",
"eslint": "^8.47.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.2.8",
"turbo": "^1.11.2",
"typescript": "^5.1.6"
},
"workspaces": [
"apps/*",
"packages/*"
]
}