-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 1.92 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
{
"name": "aspose-gridjs-java-simple-framework-examples",
"private": true,
"workspaces": [
"ClientApp/react-gridjs",
"ClientApp/vue-gridjs",
"ClientApp/angular-gridjs",
"ClientApp/vanilla-gridjs-npm"
],
"scripts": {
"setup": "npm install --workspaces --include-workspace-root",
"prestart": "npm run setup",
"start": "npm run build && npm run serve",
"serve": "node scripts/maven.mjs spring-boot:run",
"dev": "concurrently --kill-others-on-fail --names backend,react,vue,angular,npm --prefix-colors blue,cyan,green,yellow,magenta \"npm:serve\" \"npm:dev:react:client\" \"npm:dev:vue:client\" \"npm:dev:angular:client\" \"npm:dev:npm:client\"",
"dev:react:client": "npm run dev --workspace @aspose/gridjs-react-java-simple-demo",
"dev:vue:client": "npm run dev --workspace @aspose/gridjs-vue-java-simple-demo",
"dev:angular:client": "npm run dev --workspace @aspose/gridjs-angular-java-simple-demo",
"dev:npm:client": "npm run dev --workspace @aspose/gridjs-vanilla-java-simple-demo",
"dev:react": "concurrently --kill-others-on-fail --names backend,react --prefix-colors blue,cyan \"npm:serve\" \"npm:dev:react:client\"",
"dev:vue": "concurrently --kill-others-on-fail --names backend,vue --prefix-colors blue,green \"npm:serve\" \"npm:dev:vue:client\"",
"dev:angular": "concurrently --kill-others-on-fail --names backend,angular --prefix-colors blue,yellow \"npm:serve\" \"npm:dev:angular:client\"",
"dev:npm": "concurrently --kill-others-on-fail --names backend,npm --prefix-colors blue,magenta \"npm:serve\" \"npm:dev:npm:client\"",
"build": "npm run build --workspaces --if-present",
"build:backend": "node scripts/maven.mjs package",
"test:backend": "node scripts/maven.mjs test"
},
"devDependencies": {
"@angular/common": "22.0.8",
"@angular/core": "22.0.8",
"concurrently": "9.2.1"
},
"engines": {
"node": "^22.22.3 || ^24.15.0 || ^26.0.0"
}
}