-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.39 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.39 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
{
"name": "formql",
"version": "0.0.0-development",
"description": "FormQL - A framework for building dynamic forms",
"license": "MIT",
"author": "Juan Stoppa",
"homepage": "https://formql.io",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start-prod": "ng serve --prod",
"build": "ng build",
"test": "jest",
"lint": "ng lint",
"e2e": "ng e2e",
"build_core": "ng build core --prod",
"build_editor": "ng build editor --prod",
"build_material": "ng build material --prod",
"build_all": "npm run build_core && npm run build_editor && npm run build_material",
"publish_core": "ng build core --prod && cd dist/@formql/core && npm publish",
"publish_editor": "ng build editor --prod && cd dist/@formql/editor && npm publish",
"publish_material": "ng build material --prod && cd dist/@formql/material && npm publish",
"publish_all": "npm run publish_core && npm run publish_editor && npm run publish_material",
"semantic-release": "semantic-release"
},
"dependencies": {
"@angular/animations": "~9.1.1",
"@angular/cdk": "~9.2.0",
"@angular/common": "~9.1.1",
"@angular/compiler": "~9.1.1",
"@angular/core": "~9.1.1",
"@angular/forms": "~9.1.1",
"@angular/material": "~9.2.0",
"@angular/platform-browser": "~9.1.1",
"@angular/platform-browser-dynamic": "~9.1.1",
"@angular/router": "~9.1.1",
"angular2-text-mask": "^9.0.0",
"angular2-uuid": "^1.1.1",
"classlist.js": "^1.1.20150312",
"core-js": "^2.6.11",
"rxjs": "~6.5.5",
"text-mask-addons": "^3.8.0",
"tslib": "^1.10.0",
"web-animations-js": "^2.3.2",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.901.1",
"@angular-devkit/build-ng-packagr": "~0.901.1",
"@angular/cli": "~9.1.1",
"@angular/compiler-cli": "~9.1.1",
"@angular/language-service": "~9.1.1",
"@types/jest": "^24.9.1",
"@types/node": "^12.11.1",
"codelyzer": "^5.1.2",
"cypress": "^4.3.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"jest": "^24.9.0",
"jest-preset-angular": "^7.1.1",
"lerna": "^3.20.2",
"ng-packagr": "~5.0.1",
"protractor": "^5.4.3",
"semantic-release": "^15.14.0",
"ts-node": "~7.0.0",
"tslint": "~5.11.0",
"typescript": "~3.8.3"
},
"repository": {
"type": "git",
"url": "https://github.com/formql/formql.git"
}
}