-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.95 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.95 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
{
"name": "ngx-schema-tools",
"version": "1.0.0",
"description": "Angular schema tools - JSON Schema editor and visual data mapper components",
"keywords": [
"angular",
"json-schema",
"schema-editor",
"data-mapper",
"field-mapping",
"dynamic-form",
"visual-mapping"
],
"author": "",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": ""
},
"scripts": {
"ng": "ng",
"start": "ng serve demo-app",
"build": "npm run build:libs && npm run build:demo",
"build:libs": "ng build ngx-data-mapper && ng build ngx-schema-editor && ng build ngx-dyna-form",
"build:lib:data-mapper": "ng build ngx-data-mapper",
"build:lib:schema-editor": "ng build ngx-schema-editor",
"build:lib:dyna-form": "ng build ngx-dyna-form",
"build:demo": "ng build demo-app",
"build:demo:prod": "ng build demo-app --configuration production",
"watch": "ng build demo-app --watch --configuration development",
"test": "ng test"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"packageManager": "npm@10.9.3",
"dependencies": {
"@angular/animations": "^21.0.6",
"@angular/cdk": "^21.0.5",
"@angular/common": "^21.0.0",
"@angular/compiler": "^21.0.0",
"@angular/core": "^21.0.0",
"@angular/forms": "^21.0.0",
"@angular/material": "^21.0.5",
"@angular/platform-browser": "^21.0.0",
"@angular/router": "^21.0.0",
"ngx-quill": "^30.0.1",
"quill": "^2.0.3",
"rxjs": "~7.8.0",
"tslib": "^2.3.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.0.4",
"@angular/build": "^21.0.4",
"@angular/cli": "^21.0.4",
"@angular/compiler-cli": "^21.0.0",
"@types/json-schema": "^7.0.15",
"jsdom": "^27.1.0",
"ng-packagr": "^21.0.0",
"typescript": "~5.9.2",
"vitest": "^4.0.8"
}
}