forked from pinkycollie/deaf-first-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 4.06 KB
/
Copy pathpackage.json
File metadata and controls
113 lines (113 loc) · 4.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
"name": "deaf-first",
"version": "2.0.0",
"private": true,
"description": "Deaf-first SaaS ecosystem with AI-powered workflows",
"author": "360 Magicians",
"license": "MIT",
"workspaces": [
"frontend",
"backend",
"services/deafauth",
"services/pinksync",
"services/fibonrose",
"services/accessibility-nodes",
"ai"
],
"scripts": {
"dev": "concurrently -n \"FRONT,BACK,DEAF,PINK,FIBR,A11Y\" -c \"cyan,magenta,yellow,green,blue,red\" \"npm run dev:frontend\" \"npm run dev:backend\" \"npm run dev:deafauth\" \"npm run dev:pinksync\" \"npm run dev:fibonrose\" \"npm run dev:a11y\"",
"dev:frontend": "npm run dev --workspace=frontend",
"dev:backend": "npm run dev --workspace=backend",
"dev:deafauth": "npm run dev --workspace=services/deafauth",
"dev:pinksync": "npm run dev --workspace=services/pinksync",
"dev:fibonrose": "npm run dev --workspace=services/fibonrose",
"dev:a11y": "npm run dev --workspace=services/accessibility-nodes",
"build": "npm run build --workspaces --if-present",
"build:docker": "docker-compose -f configs/deployment/docker-compose.yml build",
"deploy": "npm run deploy --workspaces --if-present",
"docker:up": "docker-compose -f configs/deployment/docker-compose.yml up -d",
"docker:down": "docker-compose -f configs/deployment/docker-compose.yml down",
"docker:logs": "docker-compose -f configs/deployment/docker-compose.yml logs -f",
"db:setup": "npm run db:setup --workspace=backend && npm run db:setup --workspace=services/deafauth",
"db:migrate": "npm run db:migrate --workspaces --if-present",
"db:seed": "npm run db:seed --workspaces --if-present",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "npm run test:e2e --workspace=frontend",
"lint": "npm run lint --workspaces --if-present",
"lint-staged": "lint-staged",
"format": "prettier --write \"**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "npm run type-check --workspaces --if-present",
"prepare": "husky install",
"clean": "rm -rf node_modules && npm run clean --workspaces --if-present"
},
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@openapitools/openapi-generator-cli": "^2.13.4",
"@types/node": "^22.10.2",
"axios": "^1.6.0",
"concurrently": "^9.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.0",
"prettier": "^3.4.2",
"typescript": "^5.7.2",
"yaml": "^2.3.4"
},
"engines": {
"node": ">=20.0.0",
"npm": ">=10.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/pinkycollie/Deaf-First-Platform"
},
"keywords": [
"magicians",
"deaf-first",
"accessibility",
"saas",
"ai-workflows",
"deafauth",
"pinksync",
"fibonrose",
"mcp-server"
]
}
=======
{
"name": "mbtq-deaf-first-platform",
"version": "1.0.0",
"description": "MBTQ Universe deaf-first platform with OpenAPI specifications",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"validate:openapi": "node scripts/validate-openapi.js",
"generate:sdk": "npm run generate:sdk:typescript && npm run generate:sdk:python",
"generate:sdk:typescript": "node scripts/generate-sdk.js typescript",
"generate:sdk:python": "node scripts/generate-sdk.js python",
"lint": "eslint .",
"format": "prettier --write ."
},
"keywords": [
"deaf-first",
"accessibility",
"openapi",
"api",
"mbtq"
],
"author": "MBTQ Universe",
"license": "MIT",
"devDependencies": {
"@apidevtools/swagger-parser": "^10.1.0",
"@openapitools/openapi-generator-cli": "^2.13.4",
"axios": "^1.6.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"yaml": "^2.3.4"
}
}
>>>>>>> e961430... Add Node.js API automated tests and SDK generation capabilities