-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.59 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
{
"name": "street-fighter-moves",
"version": "1.2.3",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:ci": "START_SERVER_AND_TEST_INSECURE=1 start-server-and-test start http-get://localhost:4200 cy:run",
"percy:ci": "percy exec -- npm run cy:ci",
"fmt": "prettier --write \"**\"",
"fmt:check": "prettier --check \"**\"",
"sitemap:generate": "sitemap < sitemap-urls.txt > sitemap.xml",
"e2e": "ng e2e"
},
"private": true,
"dependencies": {
"@angular/animations": "^15.2.4",
"@angular/cdk": "^15.2.4",
"@angular/common": "^15.2.4",
"@angular/compiler": "^15.2.4",
"@angular/core": "^15.2.4",
"@angular/forms": "^15.2.4",
"@angular/material": "^15.2.4",
"@angular/platform-browser": "^15.2.4",
"@angular/platform-browser-dynamic": "^15.2.4",
"@angular/router": "^15.2.4",
"@angular/service-worker": "^15.2.4",
"@ngneat/until-destroy": "^9.2.3",
"@ngx-translate/core": "^14.0.0",
"@ngx-translate/http-loader": "^7.0.0",
"ng-github-button": "^15.0.0",
"rxjs": "~7.8.0",
"sitemap": "^7.1.1",
"tslib": "^2.4.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^15.0.0",
"@angular-devkit/build-angular": "^15.2.4",
"@angular-eslint/builder": "^15.2.1",
"@angular-eslint/eslint-plugin": "^15.2.1",
"@angular-eslint/eslint-plugin-template": "^15.2.1",
"@angular-eslint/schematics": "^15.2.1",
"@angular-eslint/template-parser": "^15.2.1",
"@angular/cli": "^15.2.4",
"@angular/compiler-cli": "^15.2.4",
"@cypress/schematic": "^2.5.0",
"@percy/cli": "^1.21.0",
"@percy/cypress": "^3.1.2",
"@types/jest": "^29.5.0",
"@types/node": "^16.18.21",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"cypress": "^12.8.1",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-jsdoc": "^40.1.0",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-preset-angular": "^13.0.1",
"prettier": "^2.8.7",
"prettier-eslint": "^15.0.1",
"prettier-plugin-organize-imports": "^3.2.2",
"pretty-quick": "^3.1.3",
"start-server-and-test": "^2.0.0",
"ts-node": "^10.9.1",
"typescript": "~4.9.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}