-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
49 lines (49 loc) · 1.47 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
{
"name": "todo-mvc",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start:client": "ng serve",
"start:server": "nodemon server.js",
"start": "concurrently \"yarn start:server\" \"yarn start:client\"",
"build": "ng build",
"lint": "ng lint"
},
"private": true,
"dependencies": {
"@angular/cdk": "^17.0.0",
"@angular/common": "^17.0.8",
"@angular/compiler": "^17.0.8",
"@angular/core": "^17.0.8",
"@angular/forms": "^17.0.8",
"@angular/platform-browser": "^17.0.8",
"@angular/ssr": "^17.0.8",
"@rx-angular/cdk": "17.0.0",
"@rx-angular/state": "17.0.0",
"@rx-angular/template": "17.0.0",
"@tanstack/angular-query-experimental": "^5.17.0",
"body-parser": "^1.20.1",
"cors": "^2.8.5",
"rxjs": "~7.4.0",
"tslib": "^2.5.0"
},
"devDependencies": {
"@angular-devkit/build-angular": "17.0.8",
"@angular-eslint/builder": "16.2.0",
"@angular-eslint/eslint-plugin": "16.2.0",
"@angular-eslint/eslint-plugin-template": "16.2.0",
"@angular-eslint/schematics": "16.2.0",
"@angular-eslint/template-parser": "16.2.0",
"@angular/cli": "^17.0.8",
"@angular/compiler-cli": "^17.0.8",
"@push-based/user-flow": "^0.20.1",
"@rx-angular/eslint-plugin": "^2.0.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"concurrently": "^7.6.0",
"eslint": "^8.49.0",
"nodemon": "^2.0.22",
"ts-node": "~8.3.0",
"typescript": "~5.2.2"
}
}