-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·105 lines (105 loc) · 3.83 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
{
"name": "rol-webapp",
"version": "1.0.0",
"license": "MIT",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:prod": "npm run build:prod && npm run server",
"build": "ng build",
"build:prod": "ng build --prod --crossOrigin=anonymous",
"lint": "ng lint",
"test": "ng lint && ng test --configuration=test",
"watch": "ng test --configuration=test --browsers ChromeHeadless --watch",
"cypress": "concurrently \"amplify mock & ng serve\" \"cypress open\"",
"mock": "concurrently \"amplify mock api\" \"ng serve\"",
"ci": "ng lint && ng test --configuration=test --browsers ChromeHeadless --code-coverage",
"format:write": "prettier **/*.{ts,json,md,scss} --write",
"format:test": "prettier **/*.{ts,json,md,scss} --list-different",
"release": "standard-version && git push --follow-tags origin master",
"analyze": "npm run build:prod -- --stats-json && webpack-bundle-analyzer ./dist/stats-es2015.json",
"server": "node ./projects/server/server.js",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate && node .all-contributors-html.js",
"contributors:check": "all-contributors check",
"generate-docs": "npx compodoc -p src/tsconfig.app.json",
"serve-docs":"npx compodoc -s src/tsconfig.app.json"
},
"private": true,
"dependencies": {
"@angular-extensions/model": "^8.0.0",
"@angular/animations": "^8.0.0",
"@angular/cdk": "^8.1.1",
"@angular/common": "~8.0.0",
"@angular/compiler": "~8.0.0",
"@angular/core": "~8.0.0",
"@angular/flex-layout": "^8.0.0-beta.27",
"@angular/forms": "~8.0.0",
"@angular/http": "^8.0.0-beta.10",
"@angular/material": "^8.0.2",
"@angular/platform-browser": "~8.0.0",
"@angular/platform-browser-dynamic": "~8.0.0",
"@angular/router": "~8.0.0",
"@aws-amplify/ui": "^1.0.20",
"@fortawesome/angular-fontawesome": "^0.4.0",
"@fortawesome/fontawesome-free": "^5.8.2",
"@fortawesome/fontawesome-svg-core": "^1.2.18",
"@fortawesome/free-brands-svg-icons": "^5.8.2",
"@fortawesome/free-solid-svg-icons": "^5.8.2",
"@ngrx/effects": "^8.0.0",
"@ngrx/entity": "^8.0.0",
"@ngrx/router-store": "^8.0.0",
"@ngrx/store": "^8.0.0",
"@ngrx/store-devtools": "^8.0.0",
"@ngx-translate/core": "^11.0.1",
"@ngx-translate/http-loader": "^4.0.0",
"aws-amplify": "^1.1.30",
"aws-amplify-angular": "^3.0.5",
"bootstrap": "^4.3.1",
"browser-detect": "^0.2.28",
"hammerjs": "^2.0.8",
"material-design-icons": "^3.0.1",
"ngx-material-file-input": "^2.1.0",
"ngx-perfect-scrollbar": "^9.0.0",
"rxjs": "~6.5.0",
"ts-md5": "^1.2.6",
"tslib": "^1.9.0",
"uuid": "^3.4.0",
"zone.js": "~0.9.1"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.803.24",
"@angular/cli": "~8.0.0",
"@angular/compiler-cli": "~8.0.0",
"@angular/language-service": "~8.0.0",
"@commitlint/cli": "^7.2.1",
"@commitlint/config-conventional": "^7.1.2",
"@types/jasmine": "~2.8.9",
"@types/jasminewd2": "^2.0.5",
"@types/uuid": "^3.4.4",
"@types/webpack-env": "^1.14.0",
"all-contributors-cli": "^5.4.1",
"codelyzer": "^5.0.0",
"concurrently": "^5.2.0",
"cypress": "^4.6.0",
"express": "^4.16.4",
"jasmine-core": "^3.2.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~4.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.4",
"karma-jasmine": "^2.0.1",
"karma-jasmine-html-reporter": "^1.4.1",
"karma-spec-reporter": "^0.0.32",
"npm-run-all": "^4.1.5",
"prettier": "^1.17.1",
"pretty-quick": "^1.11.1",
"protractor": "~5.4.1",
"rimraf": "^2.6.2",
"standard-version": "^6.0.1",
"ts-node": "~7.0.1",
"tslint": "~5.15.0",
"typescript": "~3.4.0",
"webpack-bundle-analyzer": "^3.3.2"
}
}