-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
executable file
·85 lines (85 loc) · 2.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
{
"name": "drug-portal",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"serve": "http-server . -p 5557",
"build_tsc": "tsc -p tsconfig.json",
"clean": "rm -rf dist",
"rollup": "rollup -f iife -c rollup.config.js -o dist/bundle.es2015.js",
"build": "ng build -prod -aot -vc -cc -dop --buildOptimizer --output-hashing=none",
"minify": "uglifyjs dist/vendor.bundle.js --screw-ie8 --compress --mangle --output dist/vendor.bundle.min.js",
"gzip": "gzip dist/vendor.bundle.min.js",
"build_prod": "npm run clean && npm run build && npm run minify && npm run gzip",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^6.0.7",
"@angular/cdk": "^6.3.2",
"@angular/common": "^6.0.7",
"@angular/compiler": "^6.0.7",
"@angular/core": "^6.0.7",
"@angular/forms": "^6.0.7",
"@angular/http": "^6.0.7",
"@angular/material": "^6.3.2",
"@angular/platform-browser": "^6.0.7",
"@angular/platform-browser-dynamic": "^6.0.7",
"@angular/router": "^6.0.7",
"@ng-bootstrap/ng-bootstrap": "^2.0.0",
"@trademe/ng-defer-load": "^8.0.0",
"@types/d3-scale-chromatic": "^1.2.0",
"@types/lodash": "^4.14.110",
"chroma-js": "^1.3.7",
"classlist.js": "^1.1.20150312",
"core-js": "^2.5.7",
"d3": "^4.13.0",
"d3-scale-chromatic": "^1.3.0",
"hammerjs": "^2.0.8",
"loader-utils": "^1.1.0",
"lodash": "^4.17.10",
"ng-recaptcha": "^3.0.5",
"ngl": "^0.10.4",
"object-assign": "^4.1.1",
"parse-json": "^4.0.0",
"rxjs": "^6.2.1",
"rxjs-compat": "^6.2.1",
"strip-ansi": "^4.0.0",
"supports-color": "^5.4.0",
"web-animations-js": "^2.3.1",
"webpack-sources": "^1.1.0",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.6.6",
"@angular/cli": "^6.0.8",
"@angular/compiler-cli": "^6.0.7",
"@types/d3": "^5.0.0",
"@types/google.analytics": "0.0.39",
"@types/jasmine": "^2.8.8",
"@types/node": "^10.5.2",
"codelyzer": "^4.3.0",
"jasmine-core": "^2.99.1",
"jasmine-spec-reporter": "^4.2.1",
"karma": "^2.0.2",
"karma-chrome-launcher": "^2.2.0",
"karma-cli": "^1.0.1",
"karma-coverage-istanbul-reporter": "^1.4.3",
"karma-jasmine": "^1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"node-sass": "^4.9.2",
"protractor": "^5.3.2",
"rollup": "^0.58.2",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-typescript": "^0.8.1",
"sass-loader": "^6.0.7",
"ts-node": "^6.1.0",
"tslint": "^5.10.0",
"typescript": "^2.7.2"
}
}