forked from webmasterdevlin/angular-query-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.71 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
86
{
"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 --port=8080 json-server/db.json"
},
"private": true,
"dependencies": {
"@angular/animations": "~18.2.7",
"@angular/common": "~18.2.7",
"@angular/compiler": "~18.2.7",
"@angular/core": "~18.2.7",
"@angular/forms": "~18.2.7",
"@angular/platform-browser": "~18.2.7",
"@angular/platform-browser-dynamic": "~18.2.7",
"@angular/router": "~18.2.7",
"@ngneat/until-destroy": "^10.0.0",
"@nx/angular": "20.0.0",
"@tanstack/angular-query-experimental": "^5.59.0",
"axios": "^1.7.7",
"clsx": "^2.1.1",
"match-sorter": "^6.3.4",
"rxjs": "~7.8.1",
"tailwind-merge": "^2.5.3",
"tslib": "^2.7.0",
"zone.js": "~0.15.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "~18.2.7",
"@angular-devkit/core": "~18.2.7",
"@angular-devkit/schematics": "~18.2.7",
"@angular-eslint/eslint-plugin": "^18.3.1",
"@angular-eslint/eslint-plugin-template": "^18.3.1",
"@angular-eslint/template-parser": "^18.3.1",
"@angular/cli": "~18.2.7",
"@angular/compiler-cli": "~18.2.7",
"@angular/language-service": "~18.2.7",
"@nx/eslint": "20.0.0",
"@nx/eslint-plugin": "20.0.0",
"@nx/jest": "20.0.0",
"@nx/js": "20.0.0",
"@nx/workspace": "20.0.0",
"@schematics/angular": "~18.2.7",
"@swc-node/register": "~1.10.9",
"@swc/core": "~1.7.26",
"@swc/helpers": "~0.5.13",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@tailwindcss/container-queries": "^0.1.1",
"@tailwindcss/forms": "^0.5.9",
"@tailwindcss/typography": "^0.5.15",
"@tanstack/angular-query-devtools-experimental": "^5.59.0",
"@types/jest": "^29.5.13",
"@types/node": "22.7.5",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"@typescript-eslint/utils": "^8.8.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.0.1",
"eslint": "~8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jest-preset-angular": "~14.2.4",
"json-server": "1.0.0-beta.3",
"nx": "20.0.0",
"postcss": "^8.4.47",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"tailwindcss": "^3.4.13",
"ts-jest": "^29.2.5",
"ts-node": "10.9.2",
"typescript": "~5.5.4"
},
"nx": {
"includedScripts": []
}
}