-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.99 KB
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
{
"name": "clean-reactive-architecture-angular-tanstack-query",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"format": "prettier --write .",
"test": "npm run test:format && npm run test:types && npm run test:lint && npm run test:deps && npm run test:unit",
"test:format": "prettier --check .",
"test:types": "tsc --noEmit",
"test:lint": "eslint --format=codeframe --max-warnings=0 ./src",
"test:deps": "depcruise --config ./dependency-cruiser.config.cjs ./src",
"test:unit": "ng test --watch=false",
"test:unit:watch": "ng test",
"deps:graph": "depcruise --config ./dependency-cruiser.config.cjs ./src --include-only '^src' --exclude '(.factory|test(s?)|spec(s?)|types|utils)' --collapse 5 --output-type dot | dot -T svg > ./dependency-graph.svg"
},
"private": true,
"packageManager": "npm@10.8.2",
"dependencies": {
"@angular/build": "^21.2.16",
"@angular/cli": "^21.2.16",
"@angular/common": "^21.2.0",
"@angular/compiler": "^21.2.0",
"@angular/compiler-cli": "^21.2.0",
"@angular/core": "^21.2.0",
"@angular/forms": "^21.2.0",
"@angular/platform-browser": "^21.2.0",
"@angular/router": "^21.2.0",
"@esfx/async-deferred": "^1.0.0",
"@eslint/js": "^10.0.1",
"@tailwindcss/postcss": "^4.1.12",
"@tanstack/angular-query-experimental": "^5.101.0",
"angular-eslint": "^21.4.0",
"daisyui": "^5.5.23",
"eslint": "^10.5.0",
"eslint-formatter-codeframe": "^7.32.2",
"eslint-import-resolver-typescript": "^4.4.5",
"eslint-plugin-import-x": "^4.16.2",
"factory-t": "^1.1.0",
"globals": "^17.6.0",
"dependency-cruiser": "^16.10.0",
"jsdom": "^28.0.0",
"msw": "^2.14.6",
"postcss": "^8.5.3",
"prettier": "^3.8.1",
"rxjs": "~7.8.0",
"tailwindcss": "^4.1.12",
"tslib": "^2.3.0",
"typescript": "~5.9.2",
"typescript-eslint": "^8.61.1",
"vitest": "^4.0.8"
}
}