-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.35 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.35 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
{
"name": "twd-angular-example",
"version": "0.0.0",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"serve": "json-server --watch data/data.json --routes data/routes.json --port 3001",
"serve:dev": "npm-run-all --parallel serve start",
"relay": "npx twd-relay --port 9876"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"overrides": [
{
"files": "*.html",
"options": {
"parser": "angular"
}
}
]
},
"private": true,
"packageManager": "npm@11.7.0",
"dependencies": {
"@angular/common": "^21.0.8",
"@angular/compiler": "^21.0.8",
"@angular/core": "^21.0.8",
"@angular/forms": "^21.0.8",
"@angular/platform-browser": "^21.0.8",
"@angular/router": "^21.0.8",
"axios": "^1.13.2",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.0.5",
"@angular/cli": "^21.0.5",
"@angular/compiler-cli": "^21.0.8",
"@tailwindcss/postcss": "^4.1.18",
"jsdom": "^27.4.0",
"json-server": "^0.17.4",
"npm-run-all": "^4.1.5",
"postcss": "^8.5.6",
"tailwindcss": "^4.1.18",
"twd-js": "^1.7.1",
"twd-relay": "^1.0.0",
"typescript": "~5.9.3",
"vitest": "^4.0.16"
}
}