This repository has been archived by the owner on Nov 19, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.88 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
{
"name": "covalent-quickstart",
"version": "1.0.0",
"private": true,
"description": "Quickstart App with @covalent packages",
"keywords": [
"angular",
"components",
"reusable"
],
"scripts": {
"start": "ng serve",
"e2e": "ng e2e",
"lint": "ng lint",
"reinstall": "rm -rf node_modules tmp deploy dist && npm i",
"postinstall": "webdriver-manager update && ./scripts/protractor.sh",
"start-api": "cd mock-api && covalent-data &",
"stop-api": "pkill covalent-data",
"webdriver-update": "bash ./node_modules/.bin/webdriver-manager update",
"test": "ng test --code-coverage --single-run",
"ghpages-deploy": "ng build --base-href /covalent-quickstart/ --aot -prod --sourcemap=false && bash scripts/ghpages-deploy"
},
"engines": {
"node": ">4.4 < 7",
"npm": ">3"
},
"repository": "https://github.com/teradata/covalent-quickstart.git",
"license": "MIT",
"author": "Teradata UX",
"contributors": [
"Kyle Ledbetter <[email protected]>",
"Richa Vyas <[email protected]>",
"Ed Morales <[email protected]>",
"Jason Weaver <[email protected]>",
"Jeremy Smartt <[email protected]>",
"Ilsun Park <[email protected]>"
],
"dependencies": {
"@angular/animations": "^4.2.0",
"@angular/common": "^4.2.0",
"@angular/compiler": "^4.2.0",
"@angular/core": "^4.2.0",
"@angular/flex-layout": "2.0.0-beta.8",
"@angular/forms": "^4.2.0",
"@angular/http": "^4.2.0",
"@angular/material": "2.0.0-beta.6",
"@angular/platform-browser": "^4.2.0",
"@angular/platform-browser-dynamic": "^4.2.0",
"@angular/platform-server": "^4.2.0",
"@angular/router": "^4.2.0",
"@covalent/core": "1.0.0-beta.5",
"@covalent/dynamic-forms": "1.0.0-beta.5",
"@covalent/highlight": "1.0.0-beta.5",
"@covalent/http": "1.0.0-beta.5",
"@covalent/markdown": "1.0.0-beta.5",
"@swimlane/ngx-charts": "^5.3.0",
"core-js": "^2.4.1",
"d3": "^4.9.0",
"hammerjs": "^2.0.8",
"highlight.js": "9.10.0",
"rxjs": "^5.4.0",
"showdown": "1.6.4",
"zone.js": "^0.8.5"
},
"devDependencies": {
"@angular/cli": "1.1.1",
"@angular/compiler-cli": "^4.2.0",
"@types/hammerjs": "2.0.30",
"@types/jasmine": "2.5.38",
"@types/node": "~6.0.60",
"@types/selenium-webdriver": "2.53.36",
"codelyzer": "~3.0.0",
"jasmine-core": "~2.5.2",
"jasmine-spec-reporter": "3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "~2.0.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.2.0",
"karma-firefox-launcher": "1.0.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"phantomjs-prebuilt": "2.1.7",
"protractor": "~5.1.0",
"ts-node": "~2.1.0",
"tslint": "^5.2.0",
"typescript": "~2.3.1"
},
"optionalDependencies": {
"@covalent/data": "0.7.0"
}
}