-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.12 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.12 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
{
"name": "tanstack-table-example-angular-remote-data",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"start:no-ssr": "ng serve --configuration=no-ssr",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "eslint ./src",
"serve:ssr:remote-data": "node dist/remote-data/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/common": "^21.2.7",
"@angular/compiler": "^21.2.7",
"@angular/core": "^21.2.7",
"@angular/forms": "^21.2.7",
"@angular/platform-browser": "^21.2.7",
"@angular/platform-browser-dynamic": "^21.2.7",
"@angular/platform-server": "^21.2.7",
"@angular/router": "^21.2.7",
"@angular/ssr": "^21.2.6",
"@tanstack/angular-table": "^9.0.0-alpha.24",
"express": "^5.2.1",
"rxjs": "~7.8.2"
},
"devDependencies": {
"@angular-devkit/build-angular": "^21.2.6",
"@angular/cli": "^21.2.6",
"@angular/compiler-cli": "^21.2.7",
"@types/express": "^5.0.6",
"@types/node": "^25.5.2",
"tslib": "^2.8.1",
"typescript": "6.0.2"
}
}