-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
114 lines (114 loc) · 3.69 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": "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 && yarn install && npm rebuild node-sass",
"reinstall:latest": "rm -rf node_modules tmp deploy dist && npm install",
"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",
"test:watch": "ng test --code-coverage",
"ghpages-deploy": "ng build --base-href /covalent-quickstart/ --aot -prod --sourcemap=false && bash scripts/ghpages-deploy"
},
"engines": {
"node": ">6.12.0",
"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": "6.1.0",
"@angular/cdk": "^6.4.2",
"@angular/common": "6.1.0",
"@angular/compiler": "6.1.0",
"@angular/core": "6.1.0",
"@angular/forms": "6.1.0",
"@angular/http": "6.1.0",
"@angular/material": "^6.4.2",
"@angular/platform-browser": "6.1.0",
"@angular/platform-browser-dynamic": "6.1.0",
"@angular/platform-server": "6.1.0",
"@angular/router": "6.1.0",
"@covalent/code-editor": "2.0.0-beta.1",
"@covalent/core": "2.0.0-beta.3",
"@covalent/dynamic-forms": "2.0.0-beta.3",
"@covalent/highlight": "2.0.0-beta.3",
"@covalent/http": "2.0.0-beta.3",
"@covalent/markdown": "2.0.0-beta.3",
"@covalent/text-editor": "2.0.0-beta.2",
"@ngx-translate/core": "^10.0.2",
"@ngx-translate/http-loader": "^3.0.1",
"@swimlane/ngx-charts": "8.1.0",
"core-js": "^2.4.1",
"d3": "^4.6.0",
"hammerjs": "^2.0.8",
"highlight.js": "9.11.0",
"intl": "^1.2.5",
"mime": "1.3.4",
"moment": "^2.17.1",
"node-sass": "^4.9.2",
"rxjs": "^6.2.2",
"showdown": "1.6.4",
"tslib": "^1.7.1",
"web-animations-js": "2.3.1",
"zone.js": "^0.8.20"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.8",
"@angular/cli": "6.1.1",
"@angular/compiler-cli": "6.1.0",
"@covalent/tools": "2.0.0-beta.2",
"@types/colors": "^1.1.3",
"@types/hammerjs": "^2.0.30",
"@types/jasmine": "2.5.38",
"@types/node": "^8.0.47",
"@types/selenium-webdriver": "2.53.36",
"codelyzer": "^4.4.4",
"colors": "^1.2.0-rc0",
"dotenv": "^1.2.0",
"jasmine-core": "3.1.0",
"jasmine-reporters": "^2.2.0",
"jasmine-spec-reporter": "~3.2.0",
"karma": "~1.4.1",
"karma-chrome-launcher": "2.1.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "^0.3.0",
"karma-jasmine": "^1.1.0",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-spec-reporter": "^0.0.31",
"node-cmd": "3.0.0",
"protractor": "^5.4.1",
"protractor-jasmine2-html-reporter": "0.0.6",
"protractor-take-screenshots-on-demand": "^1.2.0",
"request-promise": "^1.0.2",
"stylelint": "^9.3.0",
"ts-node": "~3.1.0",
"tslint": "5.2.0",
"typescript": "~2.7.2",
"yamljs": "^0.3.0"
},
"optionalDependencies": {
"@covalent/data": "0.7.0"
}
}