-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
107 lines (107 loc) · 3.28 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
{
"name": "galileo",
"version": "0.0.1",
"scripts": {
"ng": "ng",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:run:headless": "cypress run --headless",
"build:galileo": "ng build galileo --prod",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"dev": "start-test 4200 cy:open",
"standard-version": "standard-version",
"e2e": "start-test 4200 cy:run:headless",
"release": "cd projects/galileo && standard-version --skip.tag --skip.commit"
},
"private": true,
"dependencies": {
"@angular/animations": "~10.1.1",
"@angular/common": "~10.1.1",
"@angular/compiler": "~10.1.1",
"@angular/core": "~10.1.1",
"@angular/forms": "~10.1.1",
"@angular/localize": "^10.1.2",
"@angular/platform-browser": "~10.1.1",
"@angular/platform-browser-dynamic": "~10.1.1",
"@angular/router": "~10.1.1",
"@ng-bootstrap/ng-bootstrap": "^6.0.2",
"@nicolalopatriello/galileo": "0.1.46",
"bootstrap": "^4.5.2",
"jquery": "^3.4.1",
"ng-sidebar": "^9.2.1",
"ngx-markdown": "^10.1.1",
"popper.js": "^1.16.1",
"prismjs": "^1.21.0",
"rxjs": "~6.6.0",
"tslib": "^2.0.0",
"zone.js": "~0.10.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.1001.1",
"@angular/cli": "~10.1.1",
"@angular/compiler-cli": "~10.1.1",
"@briebug/cypress-schematic": "^4.0.3",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@cypress/code-coverage": "^3.8.1",
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@nrwl/cypress": "^10.2.1",
"@nrwl/workspace": "^10.2.1",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/github": "^7.1.1",
"@semantic-release/npm": "^7.0.6",
"@semantic-release/release-notes-generator": "^9.0.1",
"@testing-library/cypress": "^7.0.1",
"@types/jasmine": "~3.5.0",
"@types/jasminewd2": "~2.0.3",
"@types/node": "^12.11.1",
"codelyzer": "^6.0.0",
"commitizen": "^4.2.1",
"cypress": "^5.2.0",
"cypress-file-upload": "^4.1.1",
"cz-conventional-changelog": "^3.3.0",
"husky": "^4.3.0",
"istanbul-instrumenter-loader": "^3.0.1",
"istanbul-lib-coverage": "^3.0.0",
"jasmine-core": "~3.6.0",
"jasmine-spec-reporter": "~5.0.0",
"karma": "~5.0.0",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"mochawesome": "^6.1.1",
"mochawesome-merge": "^4.2.0",
"ng-packagr": "^10.1.0",
"ngx-build-plus": "^10.1.1",
"nyc": "^15.1.0",
"semantic-release": "^17.1.2",
"source-map-support": "^0.5.19",
"standard-version": "^9.0.0",
"start-server-and-test": "^1.11.2",
"ts-node": "~8.3.0",
"tslint": "~6.1.0",
"typescript": "~4.0.2",
"webpack-bundle-analyzer": "^4.1.0"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"report-dir": "./dist/cypress/coverage"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}