forked from electrofLy/guessy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.27 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
{
"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": "ng test",
"lint": "ng lint",
"ct": "ng run guessy:ct",
"ct:ci": "ng run guessy:ct:ci",
"prepare": "husky install"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.0.0",
"@angular/cdk": "^16.0.0",
"@angular/compiler": "^16.0.0",
"@angular/forms": "^16.0.0",
"@angular/material": "^16.0.0",
"@angular/platform-browser": "^16.0.0",
"@angular/router": "^16.0.0",
"@angular/service-worker": "^16.0.0",
"@ngneat/loadoff": "^2.1.0",
"@ngneat/transloco": "^4.2.6",
"geolib": "^3.3.3",
"rxjs": "~7.5.7",
"seedrandom": "^3.0.5",
"tslib": "^2.4.1",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-builders/jest": "^16.0.0",
"@angular-devkit/build-angular": "^16.0.2",
"@angular-eslint/builder": "^16.0.1",
"@angular-eslint/eslint-plugin": "^16.0.1",
"@angular-eslint/eslint-plugin-template": "^16.0.1",
"@angular-eslint/schematics": "^16.0.1",
"@angular-eslint/template-parser": "^16.0.1",
"@angular/cli": "^16.0.2",
"@angular/common": "^16.0.2",
"@angular/compiler-cli": "^16.0.0",
"@angular/core": "^16.0.2",
"@angular/platform-browser-dynamic": "^16.0.2",
"@cypress/schematic": "^2.5.0",
"@types/jest": "^29.5.1",
"@types/node": "^18.16.3",
"@types/seedrandom": "^3.0.5",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"autoprefixer": "^10.4.14",
"cypress": "^12.12.0",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"lint-staged": "^13.2.2",
"postcss": "^8.4.23",
"prettier": "^2.8.8",
"prettier-plugin-organize-attributes": "^0.0.5",
"tailwindcss": "^3.3.2",
"ts-jest": "^29.1.0",
"typescript": "~4.9.4"
},
"lint-staged": {
"*.{ts,js}": "eslint --cache --fix",
"*": "prettier --ignore-unknown --write"
},
"engines": {
"node": "18.10.0",
"npm": "8.19.2"
}
}