-
Notifications
You must be signed in to change notification settings - Fork 77
/
package.json
91 lines (91 loc) · 3.25 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": "vantage-ui-template",
"version": "1.0.0",
"private": true,
"description": "Vantage UI Template with Covalent + Vantage UI Platform",
"keywords": [
"vantage",
"template",
"ui"
],
"scripts": {
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e": "node --max_old_space_size=8192 ./node_modules/.bin/ng e2e --prod",
"serve": "./node_modules/.bin/ng serve",
"serve:dhc": "npm run serve -- --host 0.0.0.0 --disable-host-check",
"serve:prod": "node --max_old_space_size=8192 ./node_modules/.bin/ng serve --aot --prod --sourceMap=false --optimization",
"lint": "npm run tslint && npm run stylelint && npm run prettier:check",
"tslint": "ng lint --format codeFrame",
"stylelint": "./node_modules/.bin/stylelint 'src/**/*.scss' '!**/assets/**' --config stylelint.config.js --syntax scss",
"test": "./node_modules/.bin/ng test --code-coverage --source-map=false --watch=false",
"build:prod": "rm -rf ./dist && node --max_old_space_size=8192 ./node_modules/.bin/ng build --aot --prod --sourceMap=false --optimization",
"prettier": "./node_modules/.bin/prettier --write './**/*.{ts,js,json,css,scss,yml,html,md}'",
"prettier:check": "./node_modules/.bin/prettier --check './**/*.{ts,js,json,css,scss,yml,html,md}'"
},
"engines": {
"node": ">=10.15.3",
"npm": ">=6"
},
"repository": {
"type": "git",
"url": "https://github.com/Teradata/vantage-ui-template"
},
"bugs": {
"url": "https://github.com/Teradata/vantage-ui-template/issues"
},
"license": "MIT",
"author": "Teradata UI",
"dependencies": {
"@angular/animations": "^9.0.5",
"@angular/cdk": "^9.1.1",
"@angular/common": "^9.0.5",
"@angular/compiler": "^9.0.5",
"@angular/core": "^9.0.5",
"@angular/forms": "^9.0.5",
"@angular/material": "^9.1.1",
"@angular/platform-browser": "^9.0.5",
"@angular/platform-browser-dynamic": "^9.0.5",
"@angular/platform-server": "^9.0.5",
"@angular/router": "^9.0.5",
"@covalent/core": "^3.0.0",
"@covalent/echarts": "^3.0.0",
"@covalent/highlight": "^3.0.0",
"@covalent/http": "^3.0.0",
"@ngx-translate/core": "^12.1.2",
"@ngx-translate/http-loader": "^4.0.0",
"@td-vantage/ui-platform": "1.0.0-beta.1",
"core-js": "^2.6.11",
"echarts": "^4.6.0",
"hammerjs": "^2.0.8",
"rxjs": "^6.5.4",
"tslib": "^1.11.1",
"web-animations-js": "^2.3.2",
"zone.js": "^0.10.2"
},
"devDependencies": {
"@angular-builders/custom-webpack": "^9.0.0",
"@angular-devkit/build-angular": "^0.900.5",
"@angular/cli": "^9.0.5",
"@angular/compiler-cli": "^9.0.5",
"@covalent/coding-standards": "^3.0.0",
"@cypress/webpack-preprocessor": "^4.1.3",
"@nrwl/cypress": "^9.0.4",
"@nrwl/workspace": "^9.0.4",
"@types/hammerjs": "^2.0.36",
"@types/jasmine": "^3.5.8",
"@types/jasminewd2": "^2.0.8",
"@types/node": "^13.9.0",
"cypress": "^4.1.0",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-jasmine": "^3.1.1",
"karma-jasmine-html-reporter": "^1.5.2",
"karma-spec-reporter": "^0.0.32",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.2",
"typescript": "~3.7.5"
}
}