forked from formio/angular
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
114 lines (114 loc) · 3.57 KB
/
package.json
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
109
110
111
112
113
114
{
"name": "angular-formio",
"version": "4.9.3-rc.3",
"scripts": {
"build": "gulp build",
"build:watch": "gulp",
"docs": "npm run docs:build",
"docs:build": "compodoc -p tsconfig.json -n angular-formio -d docs --hideGenerator",
"docs:serve": "npm run docs:build -- -s",
"docs:watch": "npm run docs:build -- -s -w",
"lint": "tslint --type-check --project tsconfig.json src/**/*.ts",
"lite": "lite-server",
"build:demo": "webpack --mode=production",
"demo": "gulp build && concurrently --raw \"webpack-dev-server --open\" \"npm run test:watch\"",
"publish": "gulp build && gulp package-version && npm publish dist",
"test": "tsc && karma start",
"test:watch": "karma start --auto-watch"
},
"repository": {
"type": "git",
"url": "https://github.com/formio/angular-formio"
},
"author": {
"name": "Travis Tidwell",
"email": "[email protected]"
},
"keywords": [
"angular"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/formio/angular-formio/issues"
},
"devDependencies": {
"@angular/cli": "^9.1.9",
"@angular/common": "^9.1.11",
"@angular/compiler": "^9.1.11",
"@angular/compiler-cli": "^9.1.11",
"@angular/core": "^9.1.11",
"@angular/elements": "^9.1.11",
"@angular/forms": "^9.1.11",
"@angular/platform-browser": "^9.1.11",
"@angular/platform-browser-dynamic": "^9.1.11",
"@angular/router": "^9.1.11",
"@compodoc/compodoc": "^1.1.11",
"@types/jasmine": "^3.5.11",
"@types/node": "^14.0.23",
"angular-in-memory-web-api": "^0.11.0",
"codelyzer": "^5.2.2",
"concurrently": "^5.2.0",
"css-loader": "^3.6.0",
"fork-ts-checker-webpack-plugin": "^4.1.5",
"fs-extra": "^9.0.1",
"gulp": "^4.0.2",
"gulp-better-rollup": "^4.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-rename": "^2.0.0",
"gulp-replace": "^1.0.0",
"gulp-sass": "^4.1.0",
"html-loader": "^1.1.0",
"html-webpack-plugin": "^4.3.0",
"jasmine-core": "^3.5.0",
"jasmine-spec-reporter": "^5.0.2",
"karma": "^5.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-cli": "^2.0.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^3.3.1",
"karma-jasmine-html-reporter": "^1.5.4",
"lite-server": "^2.5.4",
"node-sass": "^4.14.1",
"node-sass-tilde-importer": "^1.0.0",
"node-watch": "^0.6.4",
"path": "^0.12.7",
"prismjs": "^1.20.0",
"protractor": "^7.0.0",
"rollup": "^2.18.1",
"run-sequence": "^2.2.1",
"rxjs": "^6.5.5",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"systemjs": "^6.3.3",
"ts-loader": "^7.0.5",
"ts-node": "^8.10.2",
"tsickle": "0.38.1",
"tslib": "^1.12.0",
"tslint": "^6.1.2",
"tslint-loader": "^3.6.0",
"typescript": "~3.8.3",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"zone.js": "^0.10.3"
},
"engines": {
"node": ">=6.0.0"
},
"peerDependencies": {
"@angular/core": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/common": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/forms": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/router": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"@angular/elements": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0",
"rxjs": "^5.0.0 || ^6.0.0",
"zone.js": "^0.8.0"
},
"dependencies": {
"core-js": "3.5.0",
"formiojs": "^4.11.1-rc.3",
"lodash": "^4.17.19",
"ngx-bootstrap": "^5.6.1"
}
}