-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.63 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.63 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
{
"name": "graphdone",
"version": "0.2.2-alpha",
"description": "Project management for teams who think differently",
"private": true,
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"dev": "turbo run dev",
"dev:mcp": "npm run dev:start -w @graphdone/mcp-server",
"build": "turbo run build",
"test": "turbo run test",
"test:production": "turbo run test && npm run test:e2e:core",
"test:unit": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:e2e": "playwright test",
"test:e2e:core": "playwright test --grep=\"@core\"",
"test:e2e:error-handling": "playwright test tests/e2e/graph-error-handling.spec.ts",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"test:all": "npm run test:unit && npm run test:e2e",
"lint": "turbo run lint",
"typecheck": "turbo run typecheck",
"clean": "turbo run clean && rm -rf node_modules",
"db:migrate": "cd packages/server && npm run db:migrate",
"db:seed": "cd packages/server && npm run db:seed",
"docker:dev": "docker-compose -f docker-compose.dev.yml up",
"docker:prod": "docker-compose up"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"prettier": "^3.1.0",
"turbo": "^1.11.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/your-org/graphdone.git"
},
"license": "MIT"
}