-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
109 lines (109 loc) · 3.24 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
107
108
109
{
"name": "byor-voting-web-app",
"version": "1.4.0",
"scripts": {
"ng": "npx ng",
"start": "npx ng serve --extra-webpack-config webpack.extra.js --poll 2000 --host 0.0.0.0",
"build": "npx ng build --extra-webpack-config webpack.extra.js -c production",
"lint": "npx ng lint",
"lint:fix": "npm run lint -- --fix",
"test": "npm run test:watch -- --watch=false",
"test:watch": "npx ng test --extra-webpack-config webpack.extra.js --poll 2000",
"semantic-release": "npx semantic-release",
"e2e": "npx ng e2e",
"analyze": "npm run build -- --stats-json && npx webpack-bundle-analyzer dist/byor-voting-web-app/stats.json"
},
"private": true,
"dependencies": {
"@angular/animations": "^10.2.3",
"@angular/cdk": "^10.2.7",
"@angular/common": "^10.2.3",
"@angular/compiler": "^10.2.3",
"@angular/core": "^10.2.3",
"@angular/forms": "^10.2.3",
"@angular/material": "^10.2.7",
"@angular/platform-browser": "^10.2.3",
"@angular/platform-browser-dynamic": "^10.2.3",
"@angular/router": "^10.2.3",
"@auth0/angular-jwt": "^2.1.0",
"@types/lodash": "^4.14.130",
"core-js": "^2.5.4",
"d3": "^5.7.0",
"d3-cloud": "^1.2.5",
"d3-tip": "^0.9.1",
"observable-mongo": "^2.2.2",
"rxjs": "~6.5.2",
"tslib": "^2.0.3",
"zone.js": "~0.8.29"
},
"devDependencies": {
"@angular-devkit/build-angular": "^0.1100.1",
"@angular/cli": "^10.2.0",
"@angular/compiler-cli": "^10.2.3",
"@angular/language-service": "10.2.3",
"@semantic-release/changelog": "^3.0.2",
"@semantic-release/git": "^7.0.8",
"@types/d3": "^5.5.0",
"@types/jasmine": "~2.8.8",
"@types/jasminewd2": "~2.0.3",
"@types/node": "~12.12.6",
"codelyzer": "~4.5.0",
"commitizen": "^4.2.1",
"cz-conventional-changelog": "^2.1.0",
"husky": "^2.2.0",
"jasmine-core": "~2.99.1",
"jasmine-spec-reporter": "~4.2.1",
"karma": "^5.2.2",
"karma-chrome-launcher": "~2.2.0",
"karma-coverage-istanbul-reporter": "~2.0.1",
"karma-jasmine": "~1.1.2",
"karma-jasmine-html-reporter": "^0.2.2",
"ngx-build-plus": "^10.1.1",
"prettier": "^1.16.4",
"protractor": "^7.0.0",
"rxjs-marbles": "^5.0.0",
"semantic-release": "^17.2.3",
"ts-node": "~9.0.0",
"tslint": "~5.11.0",
"typescript": "~3.9.0",
"webpack-bundle-analyzer": "^3.0.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"prepare-commit-msg": "exec < /dev/tty && git cz --hook",
"pre-commit": "exec < /dev/tty && make check_for_secrets"
}
},
"release": {
"branch": "master",
"prepare": [
"@semantic-release/changelog",
"@semantic-release/npm",
{
"path": "@semantic-release/git",
"assets": [
"package.json",
"package-lock.json",
"CHANGELOG.md"
],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/github"
]
}
}