-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "specforge",
"version": "1.0.0",
"description": "AI-powered specification and project management platform",
"private": true,
"packageManager": "pnpm@9.0.0",
"author": "SpecForge Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/specforge.git"
},
"bugs": {
"url": "https://github.com/yourusername/specforge/issues"
},
"homepage": "https://github.com/yourusername/specforge#readme",
"keywords": [
"specification",
"project-management",
"ai",
"llm",
"prd",
"api-spec",
"database-schema",
"code-generation"
],
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "concurrently -n WEB,API,WORKER -c auto \"pnpm --filter @specforge/web dev\" \"pnpm --filter @specforge/api dev\" \"pnpm --filter @specforge/worker dev\"",
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"format": "prettier -w ."
},
"devDependencies": {
"concurrently": "^9.0.0",
"dotenv-cli": "^11.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0.0",
"prisma": "^6.19.1",
"typescript": "^5.5.0"
},
"dependencies": {
"@prisma/client": "6.19.1",
"dotenv": "^17.2.3"
}
}