-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.48 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.48 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
{
"name": "app-name",
"version": "0.0.0",
"packageManager": "pnpm@11.1.1",
"scripts": {
"ng": "ng",
"dev": "ng serve",
"build": "ng build",
"build:staging": "ng build --configuration staging",
"watch": "ng build --watch --configuration development",
"test": "ng test",
"lint": "oxlint --type-aware --type-check",
"lint:fix": "oxlint --type-aware --type-check --fix",
"format": "oxfmt",
"format:check": "oxfmt --check",
"serve:ssr:app-name": "node dist/app-name/server/server.mjs"
},
"private": true,
"dependencies": {
"@angular/common": "^21.2.12",
"@angular/compiler": "^21.2.12",
"@angular/core": "^21.2.12",
"@angular/forms": "^21.2.12",
"@angular/platform-browser": "^21.2.12",
"@angular/platform-server": "^21.2.12",
"@angular/router": "^21.2.12",
"@angular/ssr": "^21.2.10",
"express": "^5.2.1",
"rxjs": "~7.8.2",
"tslib": "^2.8.1"
},
"devDependencies": {
"@angular/build": "^21.2.10",
"@angular/cli": "^21.2.10",
"@angular/compiler-cli": "^21.2.12",
"@tailwindcss/forms": "^0.5.11",
"@tailwindcss/postcss": "^4.3.0",
"@types/express": "^5.0.6",
"@types/node": "^24.12.4",
"@vitest/eslint-plugin": "^1.6.17",
"eslint-plugin-promise": "^7.3.0",
"jsdom": "^27.4.0",
"oxfmt": "^0.16.0",
"oxlint": "^1.64.0",
"oxlint-tsgolint": "^0.10.1",
"postcss": "^8.5.14",
"tailwindcss": "^4.3.0",
"typescript": "~5.9.3",
"vitest": "^4.1.6"
}
}