-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.79 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.79 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
{
"name": "minute",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "turbo run dev --concurrency 11",
"build": "turbo run build",
"build:graph": "turbo run build --graph=graph.png",
"start": "turbo run start",
"test:e2e": "turbo run test:e2e",
"test:unit": "turbo run test:unit",
"test:unit:coverage": "turbo run test:unit:coverage",
"lint": "eslint --max-warnings=0 '**/*.{ts,tsx,js,jsx,mjs}'",
"type-check": "turbo run type-check",
"db:generate": "pnpm -F @minute/prisma db:generate",
"db:studio": "pnpm -F @minute/prisma db:studio",
"db:push": "pnpm -F @minute/prisma db:push",
"db:migrate:dev": "pnpm -F @minute/prisma db:migrate:dev",
"db:migrate:deploy": "pnpm -F @minute/prisma db:migrate:deploy",
"db:test:studio": "pnpm -F @minute/prisma db:test:studio",
"db:test:push": "pnpm -F @minute/prisma db:test:push",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --check .",
"format:fix": "turbo run format:fix && prettier -w .",
"secretlint": "secretlint --secretlintignore .gitignore --maskSecrets '**/*'",
"vercel-build": "pnpm run db:generate && pnpm run db:migrate:deploy && pnpm run build",
"prepare": "husky"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@secretlint/secretlint-rule-preset-recommend": "^11.0.0",
"eslint": "^9.39.2",
"eslint-config-next": "^16.1.1",
"eslint-config-prettier": "^10.0.0",
"eslint-config-turbo": "^2.7.2",
"eslint-import-resolver-typescript": "^4.0.0",
"eslint-plugin-import": "^2.29.0",
"globals": "^17.0.0",
"husky": "^9.0.11",
"lint-staged": "^16.0.0",
"prettier": "^3.3.1",
"secretlint": "^11.0.0",
"turbo": "^2.0.3",
"typescript-eslint": "^8.0.0"
},
"packageManager": "pnpm@10.33.0"
}