-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·106 lines (106 loc) · 3.38 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
{
"name": "angular-client",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:local": "ng build --baseHref=http://local.optretina.com/platform --deployUrl=http://local.optretina.com/platform/angular-client/dist/ --watch --configuration=development",
"open": "ng serve --open",
"build": "ng build",
"build:prod": "ng build --prod --build-optimizer --aot --optimization --vendor-chunk",
"test": "jest",
"test:watch": "jest --watch",
"test:ci": "jest --runInBand",
"test:coverage": "jest --coverage",
"lint": "ng lint",
"lint:type": "ng lint --type-check",
"lint:fix": "ng lint --fix",
"stylish": "ng lint --format stylish",
"pree2e": "webdriver-manager update --standalone false --gecko false --versions.chrome 2.44",
"e2e": "yarn pree2e && ng e2e --port 4000 --webdriver-update=false",
"clean": "rimraf node_modules",
"clean:all": "rimraf node_modules dist dll && npm cache clean --force",
"clean:dist": "rimraf dist",
"reinstall": "yarn clean:all -- && rimraf package-lock.json && yarn"
},
"private": true,
"dependencies": {
"@angular/animations": "~8.2.5",
"@angular/cdk": "^8.2.2",
"@angular/common": "~8.2.5",
"@angular/compiler": "~8.2.5",
"@angular/core": "~8.2.5",
"@angular/forms": "~8.2.5",
"@angular/platform-browser": "~8.2.5",
"@angular/platform-browser-dynamic": "~8.2.5",
"@angular/router": "~8.2.5",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@ngrx/effects": "^8.3.0",
"@ngrx/entity": "^8.3.0",
"@ngrx/router-store": "^8.3.0",
"@ngrx/store": "^8.3.0",
"@ngrx/store-devtools": "^8.3.0",
"@ngx-formly/bootstrap": "^5.4.3",
"@ngx-formly/core": "^5.4.3",
"@ngx-progressbar/core": "^5.3.2",
"angular-tree-component": "^8.4.0",
"animate.css": "^3.7.2",
"bootstrap": "^4.3.1",
"commitizen": "^4.0.3",
"core-js": "^2.4.1",
"cz-conventional-changelog": "^3.0.2",
"flag-icon-css": "^3.3.0",
"husky": "^3.0.8",
"jasmine-marbles": "^0.6.0",
"jasmine-spec-reporter": "^4.2.1",
"jquery": "^3.4.1",
"ng2-nouislider": "^1.8.2",
"ngx-bootstrap": "^5.0.0",
"ngx-perfect-scrollbar": "^8.0.0",
"ngx-select-ex": "^3.6.10",
"ngx-toastr": "^11.1.0",
"nouislider": "^14.0.2",
"rxjs": "~6.4.0",
"tslib": "^1.10.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.803.4",
"@angular/cli": "~8.3.4",
"@angular/compiler-cli": "~8.2.5",
"@angular/language-service": "~8.2.5",
"@babel/preset-typescript": "^7.3.3",
"@ngrx/schematics": "^8.0.1",
"@types/jasmine": "~3.3.8",
"@types/jasminewd2": "~2.0.3",
"@types/jest": "^24.0.13",
"@types/jquery": "^3.2.13",
"@types/node": "~8.9.4",
"babel-jest": "^24.8.0",
"codelyzer": "^5.0.1",
"jasmine-core": "^3.4.0",
"jest": "^24.8.0",
"jest-preset-angular": "^7.1.1",
"node-sass": "^4.5.3",
"npm-run-all": "^4.1.5",
"protractor": "~5.4.0",
"rimraf": "^3.0.0",
"ts-node": "~7.0.0",
"tslint": "~5.15.0",
"typescript": "~3.5.3"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "yarn run lint",
"pre-push": "run-s test build:prod",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
}
}