forked from santosh-rumsan/turbo-seed
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 924 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 924 Bytes
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
{
"name": "triggers",
"private": true,
"scripts": {
"build": "turbo run build",
"build:pkg": "turbo build:pkg",
"dev": "turbo run dev",
"lint": "turbo run lint",
"db:generate": "turbo run --filter @rumsan/prisma db:generate",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"check-types": "turbo run check-types",
"clean": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' + && find . -name 'dist' -exec rm -rf '{}' + && find . -name '.next' -exec rm -rf '{}' + && find . -name '.turbo' -exec rm -rf '{}' +"
},
"devDependencies": {
"@changesets/cli": "^2.29.7",
"@workspace/eslint-config": "workspace:*",
"@workspace/typescript-config": "workspace:*",
"prettier": "^3.6.2",
"turbo": "^2.5.8",
"typescript": "5.9.2"
},
"packageManager": "pnpm@8.14.1",
"engines": {
"node": ">=18"
},
"dependencies": {
"axios": "^1.12.2"
}
}