-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.82 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.82 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
{
"name": "ds-builder",
"version": "1.0.0",
"description": "Design System Builder Application.",
"scripts": {
"dev": "concurrently \"npm run dev:services\" \"npm run dev:client\" \"npm run dev:admin\"",
"dev:services": "concurrently \"npm run dev:ds-generator\" \"npm run dev:ds-registry\" \"npm run dev:publisher\" \"npm run dev:ds-documentation-generator\"",
"dev:ds-generator": "cd services/ds-generator && npm run dev",
"dev:ds-registry": "cd services/ds-registry && npm run dev",
"dev:publisher": "cd services/publisher && npm run start",
"dev:ds-documentation-generator": "cd services/ds-documentation-generator && npm run start:dev",
"dev:client": "cd apps/client && npm run dev",
"dev:admin": "cd apps/admin && npm run dev",
"build": "concurrently \"npm run build:services\" \"npm run build:client\" \"npm run build:admin\"",
"build:services": "concurrently \"npm run build:ds-generator\" \"npm run build:ds-registry\" \"npm run build:ds-documentation-generator\"",
"build:ds-generator": "cd services/ds-generator && npm run build",
"build:ds-registry": "cd services/ds-registry && npm run build",
"build:ds-documentation-generator": "cd services/ds-documentation-generator && npm run build",
"build:client": "cd apps/client && npm run build",
"build:admin": "cd apps/admin && npm run build"
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"concurrently": "^8.2.2",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^5.2.0",
"eslint-plugin-react-refresh": "^0.4.20",
"prettier": "^3.4.2",
"typescript": "5.6.3",
"typescript-eslint": "^8.36.0"
},
"dependencies": {
"clsx": "^2.1.1",
"tailwind-merge": "^3.3.0"
}
}