forked from dynamic-forms/dynamic-forms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 4.68 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 4.68 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
{
"name": "@dynamic-forms/common",
"version": "11.0.0-rc.1",
"author": "dynamic-forms",
"description": "dynamic-forms is an Angular project for dynamic forms based on JSON.",
"keywords": [
"angular",
"forms",
"reactive forms",
"json",
"json forms",
"dynamic-forms"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/dynamic-forms/dynamic-forms.git"
},
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e --no-webdriver-update",
"e2e:prod": "ng e2e --no-webdriver-update --configuration=production",
"e2e:azure": "ng e2e --no-webdriver-update --configuration=azure",
"e2e:azure:prod": "ng e2e --no-webdriver-update --configuration=azure-production",
"e2e:watch": "watch \"npm run e2e -- --dev-server-target=\" apps/demo/src apps/demo-e2e/src --wait=1",
"build:ivy": "ngcc",
"build:core": "ng build dynamic-forms-core --prod",
"build:bootstrap": "ng build dynamic-forms-bootstrap --prod",
"build:material": "ng build dynamic-forms-material --prod",
"build:libs": "npm run build:core && npm run build:bootstrap && npm run build:material",
"build:demo": "ng build dynamic-forms-demo",
"build:demo:prod": "ng build dynamic-forms-demo --prod --aot",
"test:libs": "ng test dynamic-forms-libs --browsers=ChromeHeadless --watch=false --code-coverage",
"test:demo": "ng test dynamic-forms-demo --browsers=ChromeHeadless --watch=false",
"cover:core": "ng test dynamic-forms-core --browsers=ChromeHeadless --watch=false --code-coverage",
"cover:bootstrap": "ng test dynamic-forms-bootstrap --browsers=ChromeHeadless --watch=false --code-coverage",
"cover:material": "ng test dynamic-forms-material --browsers=ChromeHeadless --watch=false --code-coverage",
"cover:libs": "npm run cover:core && npm run cover:bootstrap && npm run cover:material",
"doc:core": "cd libs/core && npx compodoc -c doc.json",
"doc:bootstrap": "cd libs/bootstrap && npx compodoc -c doc.json",
"doc:material": "cd libs/material && npx compodoc -c doc.json",
"doc:libs": "npm run doc:core && npm run doc:bootstrap && npm run doc:material",
"serve:core": "ng build dynamic-forms-core --watch",
"serve:bootstrap": "ng build dynamic-forms-bootstrap --watch",
"serve:material": "ng build dynamic-forms-material --watch",
"serve:doc:core": "cd libs/core && npx compodoc -c doc.json --serve --watch",
"serve:doc:bootstrap": "cd libs/bootstrap && npx compodoc -c doc.json --serve --watch",
"serve:doc:material": "cd libs/material && npx compodoc -c doc.json --serve --watch",
"build:localhost": "npm run build:libs && npm run cover:libs && npm run doc:libs && npm run build:demo -- --base-href=/v11/",
"build:localhost:prod": "npm run build:libs && npm run cover:libs && npm run doc:libs && npm run build:demo:prod -- --base-href=/v11/",
"publish:core": "cd dist/v11/@dynamic-forms/core && npm publish",
"publish:bootstrap": "cd dist/v11/@dynamic-forms/bootstrap && npm publish",
"publish:material": "cd dist/v11/@dynamic-forms/material && npm publish",
"publish:libs": "npm run publish:core && npm run publish:bootstrap && npm run publish:material"
},
"private": true,
"dependencies": {
"@angular/animations": "~11.1.2",
"@angular/cdk": "~11.1.2",
"@angular/common": "~11.1.2",
"@angular/compiler": "~11.1.2",
"@angular/core": "~11.1.2",
"@angular/forms": "~11.1.2",
"@angular/material": "~11.1.2",
"@angular/platform-browser": "~11.1.2",
"@angular/platform-browser-dynamic": "~11.1.2",
"@angular/router": "~11.1.2",
"@ngxs/store": "^3.7.1",
"bootstrap": "^4.6.0",
"marked": "^2.0.0",
"rxjs": "~6.6.3",
"tslib": "^2.0.3",
"uuid": "^8.3.2",
"zone.js": "~0.11.3"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1101.4",
"@angular/cli": "~11.1.4",
"@angular/compiler-cli": "~11.1.2",
"@angular/language-service": "~11.1.2",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "~3.6.3",
"@types/jasminewd2": "~2.0.8",
"@types/marked": "^1.2.2",
"@types/node": "~14.14.27",
"@types/uuid": "^8.3.0",
"codelyzer": "^6.0.1",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~6.0.0",
"karma": "^5.2.3",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage": "^2.0.3",
"karma-jasmine": "~4.0.1",
"karma-jasmine-html-reporter": "^1.5.4",
"karma-junit-reporter": "^2.0.1",
"ng-packagr": "^11.1.4",
"protractor": "~7.0.0",
"protractor-beautiful-reporter": "^1.3.6",
"ts-node": "~9.1.1",
"tslint": "~6.1.3",
"typescript": "~4.1.3",
"watch": "^1.0.2"
}
}