-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.2 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.2 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "tasknebula",
"version": "0.3.3",
"private": true,
"description": "AI-native, real-time, keyboard-first project management platform",
"author": "Neura Parse <hello@neuraparse.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/neuraparse/tasknebula.git"
},
"homepage": "https://tasknebula.io",
"bugs": {
"url": "https://github.com/neuraparse/tasknebula/issues"
},
"keywords": [
"project-management",
"jira-alternative",
"linear-alternative",
"ai-powered",
"nextjs",
"react",
"typescript",
"kanban",
"agile",
"scrum"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"lint": "turbo run lint",
"type-check": "turbo run type-check",
"clean": "turbo run clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md,json}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,md,json}\"",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:studio": "turbo run db:studio",
"db:reset": "bash scripts/reset-db.sh",
"setup": "bash scripts/setup.sh",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"prepare": "husky"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix --no-error-on-unmatched-pattern",
"prettier --write"
],
"*.{js,cjs,mjs,jsx,json,md,yml,yaml}": [
"prettier --write"
]
},
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@types/nodemailer": "^7.0.11",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"prettier-plugin-tailwindcss": "^0.6.9",
"turbo": "^2.3.3",
"typescript": "^5.7.2"
},
"packageManager": "pnpm@9.15.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"nodemailer": "^8.0.4"
},
"pnpm": {
"overrides": {
"flatted": "3.4.2",
"jws": "4.0.1",
"minimatch@<3.1.4": "3.1.4",
"minimatch@>=9.0.0 <9.0.7": "9.0.7",
"picomatch": "4.0.4",
"rollup": "4.60.4"
}
}
}