-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
83 lines (83 loc) · 2.66 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
{
"name": "climate",
"version": "0.0.0",
"license": "GPL GNU v3",
"scripts": {
"prettier": "prettier --write \"src/app/*.{ts,css,html}\"",
"tslint": "tslint --fix -c tslint.json 'src/app/*.ts'",
"pre-build": "npm run tslint-check && npm run tslint && npm run prettier",
"ng": "ng",
"start": "ng serve",
"build": "npm run pre-build && ng build",
"build_prod": "npm run pre-build && npm run build && browserify -s main dist/main.bundle.js > dist/bundle.js && npm run minify",
"build_prod_1": "npm run build && npm run minify_1",
"test": "ng test",
"e2e": "ng e2e",
"minify": "uglifyjs dist/bundle.js --screw-ie8 --compress --mangle --output dist/bundle.min.js",
"minify_1": "uglifyjs dist/main.bundle.js --screw-ie8 --compress --mangle --output dist/main.bundle.min.js",
"tslint-check": "tslint-config-prettier-check ./tslint.json"
},
"husky": {
"hooks": {
"pre-commit": "npm run pre-build"
}
},
"private": true,
"dependencies": {
"@angular/animations": "^7.2.15",
"@angular/cdk": "^7.3.7",
"@angular/common": "^7.2.15",
"@angular/compiler": "^7.2.15",
"@angular/core": "^7.2.15",
"@angular/forms": "^7.2.15",
"@angular/http": "^7.2.15",
"@angular/material": "^7.3.7",
"@angular/platform-browser": "^7.2.15",
"@angular/platform-browser-dynamic": "^7.2.15",
"@angular/router": "^7.2.15",
"@swimlane/ngx-charts": "^12.1.0",
"compute-kurtosis": "^1.0.0",
"compute-skewness": "^1.0.1",
"core-js": "^2.6.9",
"d3": "^5.11.0",
"gl-mat4": "^1.1.4",
"gl-matrix": "3.1.0",
"hammerjs": "^2.0.8",
"husky": "^3.1.0",
"jquery": "^2.2.4",
"materialize-css": "^0.100.1",
"ng-click-outside": "^6.0.0",
"ng5-slider": "^1.2.4",
"ngx-print": "^1.2.0-beta.3",
"precise-commits": "^1.0.2",
"prettier": "^1.19.1",
"primeng": "^8.0.2",
"rxjs": "^6.5.2",
"rxjs-compat": "^6.5.2",
"tslib": "^1.9.0",
"urijs": "^1.19.1",
"zone.js": "0.8.26"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.13.0",
"@angular/cli": "7.3.9",
"@angular/compiler-cli": "^7.2.15",
"@types/d3": "^5.7.2",
"@types/jasmine": "3.4.0",
"@types/node": "^12.7.12",
"codelyzer": "~5.1.0",
"jasmine-core": "~3.4.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.2.0",
"karma-chrome-launcher": "~3.1.0",
"karma-cli": "~2.0.0",
"karma-coverage-istanbul-reporter": "^2.1.0",
"karma-jasmine": "~2.0.1",
"karma-jasmine-html-reporter": "^1.4.2",
"protractor": "^5.4.2",
"ts-node": "~8.3.0",
"tslint": "~5.19.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "~3.1.6"
}
}