-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.85 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 2.85 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
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
86
87
88
89
{
"name": "@angular-query-demo/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "concurrently \"pnpm serve\" \"pnpm backend\"",
"serve": "nx serve",
"reset": "nx reset",
"build": "nx build",
"test": "nx test",
"backend": "json-server json-server/db.json --port=8080 --delay=3000"
},
"private": true,
"dependencies": {
"@angular/animations": "~21.1.0",
"@angular/common": "~21.1.0",
"@angular/compiler": "~21.1.0",
"@angular/core": "~21.1.0",
"@angular/forms": "~21.1.0",
"@angular/platform-browser": "~21.1.0",
"@angular/platform-browser-dynamic": "~21.1.0",
"@angular/router": "~21.1.0",
"@ngneat/until-destroy": "^10.0.0",
"@nx/angular": "22.3.3",
"@tanstack/angular-query-experimental": "^5.90.23",
"axios": "^1.13.2",
"clsx": "^2.1.1",
"match-sorter": "^8.2.0",
"rxjs": "~7.8.2",
"tailwind-merge": "^3.4.0",
"tslib": "^2.8.1",
"zone.js": "~0.16.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~21.1.0",
"@angular-devkit/core": "~21.1.0",
"@angular-devkit/schematics": "~21.1.0",
"@angular-eslint/eslint-plugin": "^21.1.0",
"@angular-eslint/eslint-plugin-template": "^21.1.0",
"@angular-eslint/template-parser": "^21.1.0",
"@angular/cli": "~21.1.0",
"@angular/compiler-cli": "~21.1.0",
"@angular/language-service": "~21.1.0",
"@nx/eslint": "22.3.3",
"@nx/eslint-plugin": "22.3.3",
"@nx/jest": "22.3.3",
"@nx/js": "22.3.3",
"@nx/workspace": "22.3.3",
"@schematics/angular": "~21.1.0",
"@swc-node/register": "~1.11.1",
"@swc/core": "~1.15.10",
"@swc/helpers": "~0.5.18",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/cli": "^4.1.18",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.1.18",
"@tailwindcss/typography": "^0.5.19",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/angular-query-devtools-experimental": "^5.87.5",
"@types/jest": "^30.0.0",
"@types/node": "25.0.9",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@typescript-eslint/utils": "^8.53.1",
"@webmasterdevlin/json-server": "^1.3.5",
"autoprefixer": "^10.4.23",
"concurrently": "^9.2.1",
"eslint": "~9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-preset-angular": "~16.0.0",
"nx": "22.3.3",
"postcss": "^8.5.6",
"prettier": "^3.8.0",
"prettier-plugin-tailwindcss": "^0.7.2",
"tailwindcss": "^4.1.18",
"ts-jest": "^29.4.6",
"ts-node": "10.9.2",
"typescript": "~5.9.3"
},
"nx": {
"includedScripts": []
}
}