-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
78 lines (78 loc) · 2.4 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
{
"name": "CloudFlow",
"version": "0.7.1",
"license": "Apache-2.0",
"private": true,
"engines": {
"node": "8.x || 10.x",
"yarn": "^1.3.2",
"npm": "5.x || 6.x"
},
"scripts": {
"ng": "ng",
"start": "ng serve --ssl --host 0.0.0.0 --port 4200 --publicHost http://0.0.0.0:4200 --disableHostCheck --proxy-config proxy.conf.json",
"build": "ng build --aot --prod --output-hashing=bundles --no-progress",
"test": "ng test",
"test-ci": "ng test --watch=false --no-progress",
"test-coverage": "ng test --watch=false --code-coverage",
"lint": "ng lint CloudFlow --type-check",
"e2e": "ng e2e",
"ci": "npm run lint && npm run test-ci && npm run build"
},
"dependencies": {
"@angular/animations": "6.1.10",
"@angular/common": "6.1.10",
"@angular/compiler": "6.1.10",
"@angular/core": "6.1.10",
"@angular/forms": "6.1.10",
"@angular/platform-browser": "6.1.10",
"@angular/platform-browser-dynamic": "6.1.10",
"@angular/router": "6.1.10",
"@ng-bootstrap/ng-bootstrap": "1.1.2",
"angular-oauth2-oidc": "~4.0.2",
"angular-split": "1.0.0-rc.3",
"awesome-bootstrap-checkbox": "^1.0.1",
"bootstrap-css-only": "4.1.1",
"codemirror": "^5.39.0",
"core-js": "^2.5.7",
"cross-domain-storage": "^2.0.4",
"dagre": "^0.8.4",
"font-awesome": "^4.7.0",
"jquery": "^3.4.1",
"js-yaml": "^3.13.1",
"jsplumb": "2.7.9",
"moment": "^2.22.2",
"ngx-clipboard": "~11.1.1",
"open-sans-fontface": "^1.4.0",
"rxjs": "6.2.2",
"rxjs-compat": "6.2.2",
"sweetalert2": "^7.24.4",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.9",
"@angular/cli": "^6.0.8",
"@angular/compiler-cli": "6.1.10",
"@angular/language-service": "6.1.10",
"@types/codemirror": "^0.0.57",
"@types/dagre": "0.7.39",
"@types/jasmine": "~2.5.53",
"@types/jquery": "^3.2.11",
"@types/js-yaml": "^3.12.1",
"@types/node": "^8.0.0",
"codelyzer": "~4.4.2",
"dedent-js": "^1.0.1",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^2.0.1",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "~5.4.2",
"ts-node": "~5.0.1",
"tslint": "~5.10.0",
"typescript": "~2.7.2"
}
}