-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.46 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.46 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
{
"name": "website-builder-platform",
"version": "0.1.0",
"private": true,
"scripts": {
"start:builder": "nx serve builder-app",
"start:admin": "nx serve admin-app",
"build": "nx run-many -t build",
"test": "nx run-many -t test",
"api:generate": "openapi-generator-cli generate -i docs/api/openapi.yaml -g typescript-angular -o libs/api-client"
},
"dependencies": {
"@angular/animations": "^17.3.0",
"@angular/common": "^17.3.0",
"@angular/compiler": "^17.3.0",
"@angular/core": "^17.3.0",
"@angular/forms": "^17.3.0",
"@angular/platform-browser": "^17.3.0",
"@angular/platform-browser-dynamic": "^17.3.0",
"@angular/router": "^17.3.0",
"grapesjs": "^0.22.16",
"lucide-angular": "^1.0.0",
"rxjs": "~7.8.0",
"tslib": "^2.6.0",
"zone.js": "~0.14.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.3.0",
"@angular/cli": "^17.3.0",
"@angular/compiler-cli": "^17.3.0",
"@nx/angular": "^18.3.0",
"@nx/eslint": "^18.3.0",
"@nx/jest": "^18.3.0",
"@nx/js": "^18.3.0",
"@nx/workspace": "^18.3.0",
"@tailwindcss/postcss": "^4.2.4",
"@types/node": "^25.6.0",
"nx": "^18.3.0",
"playwright": "^1.59.1",
"postcss": "^8.5.13",
"postcss-import": "^16.1.1",
"tailwindcss": "^4.2.4",
"ts-node": "^10.9.2",
"typescript": "~5.4.5"
},
"pnpm": {
"onlyBuiltDependencies": [
"@parcel/watcher",
"esbuild",
"nx"
]
}
}