-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.39 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
{
"name": "minesweeper",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "jest",
"test-watch": "jest --watch",
"test-coverage": "jest --collect-coverage",
"test-json": "jest --coverage --coverageReporters json-summary",
"pretest": "rimraf dist && rimraf coverage",
"lint": "ng lint",
"lint:fix": "prettier --write src && ng lint --fix"
},
"private": true,
"dependencies": {
"@angular/animations": "^16.1.8",
"@angular/common": "^16.1.0",
"@angular/compiler": "^16.1.0",
"@angular/core": "^16.1.0",
"@angular/forms": "^16.1.0",
"@angular/platform-browser": "^16.1.0",
"@angular/platform-browser-dynamic": "^16.1.0",
"@angular/router": "^16.1.0",
"@ngneat/until-destroy": "^10.0.0",
"@ngrx/effects": "16.2.0",
"@ngrx/store": "^16.2.0",
"@ngrx/store-devtools": "16.2.0",
"file-saver": "^2.0.5",
"jasmine-marbles": "^0.9.2",
"rxjs": "~7.8.0",
"tslib": "^2.3.0",
"zone.js": "~0.13.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "^16.1.0",
"@angular-eslint/builder": "16.1.0",
"@angular-eslint/eslint-plugin": "16.1.0",
"@angular-eslint/eslint-plugin-template": "16.1.0",
"@angular-eslint/schematics": "16.1.0",
"@angular-eslint/template-parser": "16.1.0",
"@angular/cli": "~16.1.0",
"@angular/compiler-cli": "^16.1.0",
"@types/file-saver": "^2.0.5",
"@types/jasmine": "~4.3.0",
"@types/jest": "^29.5.3",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.44.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"jasmine-core": "~4.6.0",
"jest": "^29.6.2",
"jest-preset-angular": "^13.1.1",
"lint-staged": "^13.2.3",
"postcss": "^8.4.27",
"prettier": "^3.0.1",
"tailwindcss": "^3.3.3",
"typescript": "~5.1.3"
},
"jest": {
"preset": "jest-preset-angular",
"setupFilesAfterEnv": [
"<rootDir>/setup-jest.ts"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged --relative",
"pre-push": "lint-staged --relative"
}
},
"lint-staged": {
"src/**/*.{js,ts,html,css,scss}": [
"prettier --write && eslint"
]
}
}