forked from areijngoudt/angular-swagger-form-field-sample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.72 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.72 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
{
"name": "angular-swagger-form-field-sample",
"version": "1.1.1",
"description": "Angular (2 and above) sample project which shows how to use the swagger-ts-generator and angular-swagger-form-field modules. It implements functionality to use the generated classes for building form fields with validation.",
"main": "src/index.html",
"scripts": {
"start": "ng serve --port 3009",
"build": "ng build -prod --sourcemap=false",
"readme.md-to-home.html": "github-markdown README.md > src/app/components/home/home.component.html",
"deploy": "ng github-pages:deploy"
},
"keywords": [
"Swagger",
"Code Generator",
"models",
"Angular",
"Angular2",
"Angular 2",
"model-driven forms",
"reactive forms"
],
"repository": {
"type": "git",
"url": "https://github.com/areijngoudt/angular-swagger-form-field-sample"
},
"author": "Ad Reijngoudt",
"contributors": [
"Ad Reijngoudt",
"Remi Sloot"
],
"license": "ISC",
"dependencies": {
"@angular/common": "2.4.1",
"@angular/compiler": "2.4.1",
"@angular/core": "2.4.1",
"@angular/forms": "2.4.1",
"@angular/http": "2.4.1",
"@angular/platform-browser": "2.4.1",
"@angular/platform-browser-dynamic": "2.4.1",
"@angular/router": "3.4.1",
"angular-swagger-form-field": "^1.2.3",
"angular2-notifications": "^0.4.48",
"bootstrap": "^4.0.0-alpha.2",
"core-js": "^2.4.1",
"font-awesome": "^4.7.0",
"lodash": "^4.17.2",
"moment": "^2.17.1",
"ng2-bootstrap": "^1.1.16-9",
"ng2-translate": "^5.0.0",
"reflect-metadata": "^0.1.9",
"rxjs": "5.0.1",
"zone.js": "^0.7.2"
},
"devDependencies": {
"@angular/cli": "^1.0.0-beta.30",
"@types/jasmine": "^2.5.38",
"@types/lodash": "^4.14.36",
"awesome-typescript-loader": "2.2.4",
"codelyzer": "^2.0.0-beta.3",
"concurrently": "^2.0.0",
"del": "^2.0.2",
"fsevents": "^1.0.14",
"gulp": "^3.9.1",
"gulp-jsbeautifier": "^2.0.3",
"gulp-load-plugins": "^1.2.2",
"gulp-notify": "^2.2.0",
"gulp-plumber": "^1.1.0",
"gulp-streamify": "^1.0.2",
"gulp-task-listing": "^1.0.1",
"jasmine-core": "2.5.2",
"jasmine-spec-reporter": "2.7.0",
"jshint-stylish": "^2.0.1",
"karma": "1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-cli": "^1.0.1",
"karma-jasmine": "^1.0.2",
"karma-remap-istanbul": "^0.2.1",
"lite-server": "^2.2.0",
"lodash": "^4.12.0",
"merge2": "^0.3.7",
"node-sass": "^3.4.2",
"protractor": "4.0.11",
"request": "^2.72.0",
"run-sequence": "^1.1.5",
"swagger-ts-generator": "^1.1.15",
"ts-node": "1.7.2",
"tslint": "4.1.1",
"typescript": "2.0.10",
"vinyl-source-stream": "^1.1.0",
"yargs": "^4.6.0"
}
}