-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.3 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
{
"name": "guessy",
"version": "1.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:remote": "ng run guessy:serve:remote",
"build": "ng build",
"build:prod": "ng run guessy:build:production",
"test": "jest",
"lint": "ng lint",
"ct": "ng run guessy:ct",
"ct:ci": "ng run guessy:ct:ci",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^17.0.2",
"@angular/cdk": "^17.0.0",
"@angular/compiler": "^17.0.2",
"@angular/forms": "^17.0.2",
"@angular/material": "^17.0.0",
"@angular/platform-browser": "^17.0.2",
"@angular/router": "^17.0.2",
"@angular/service-worker": "^17.0.2",
"@ngneat/loadoff": "^2.1.0",
"@ngneat/transloco": "5.0.7",
"geolib": "^3.3.4",
"rxjs": "~7.8.1",
"seedrandom": "^3.0.5",
"tslib": "^2.6.0",
"zone.js": "~0.14.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^17.0.0",
"@angular-devkit/architect": "^0.1700.0",
"@angular-eslint/builder": "^17.0.1",
"@angular-eslint/eslint-plugin": "^17.0.1",
"@angular-eslint/eslint-plugin-template": "^17.0.1",
"@angular-eslint/schematics": "^17.0.1",
"@angular-eslint/template-parser": "^17.0.1",
"@angular/cli": "^17.0.0",
"@angular/common": "^17.0.2",
"@angular/compiler-cli": "^17.0.2",
"@angular/core": "^17.0.2",
"@angular/platform-browser-dynamic": "^17.0.2",
"@cypress/schematic": "^2.5.1",
"@types/jest": "^29.5.8",
"@types/node": "^18.13.0",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"autoprefixer": "^10.4.16",
"cypress": "^13.4.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "^13.1.3",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"tailwindcss": "^3.3.5",
"ts-node": "^10.9.1",
"ts-jest": "^29.1.1",
"flat": "^6.0.1",
"typescript": "~5.2.2"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write"
},
"engines": {
"node": "18.13.0",
"npm": "8.19.3"
}
}