-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.06 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.06 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "opennota",
"version": "0.1.0",
"private": true,
"description": "Open source school management and grading platform for Latin American schools",
"license": "AGPL-3.0-only",
"type": "module",
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@10.33.2",
"repository": {
"type": "git",
"url": "https://github.com/meser1905/opennota.git"
},
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"start": "turbo run start",
"test": "turbo run test",
"test:e2e": "turbo run test:e2e",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"db:migrate": "pnpm --filter @opennota/db prisma:migrate",
"db:generate": "pnpm --filter @opennota/db prisma:generate",
"db:seed": "pnpm --filter @opennota/db db:seed",
"db:studio": "pnpm --filter @opennota/db prisma:studio",
"db:reset": "pnpm --filter @opennota/db prisma:reset",
"setup": "pnpm install && pnpm db:migrate && pnpm db:seed",
"clean": "turbo run clean && rimraf node_modules",
"clean:db": "rimraf \"packages/db/data/opennota.db\" \"packages/db/data/opennota.db-journal\"",
"prepare": "husky"
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@opennota/config": "workspace:*",
"eslint": "^9.17.0",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"rimraf": "^6.0.1",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"lint-staged": {
"apps/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"packages/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,mjs,cjs,json,md,yml,yaml,css}": [
"prettier --write"
]
},
"pnpm": {
"onlyBuiltDependencies": [
"@nestjs/core",
"@prisma/client",
"@prisma/engines",
"@swc/core",
"esbuild",
"prisma",
"sharp",
"turbo"
]
}
}