-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (31 loc) · 742 Bytes
/
package.json
File metadata and controls
32 lines (31 loc) · 742 Bytes
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
{
"name": "starter-template",
"version": "1.0.0",
"private": true,
"description": "Full-stack monorepo with Angular + Ionic frontend and NestJS backend",
"scripts": {
"frontend": "pnpm --filter frontend start",
"backend": "pnpm --filter backend start",
"dev": "pnpm run --parallel --filter frontend --filter backend start",
"build": "pnpm run --recursive build",
"test": "pnpm run --recursive test",
"lint": "pnpm run --recursive lint"
},
"keywords": [
"monorepo",
"pnpm",
"angular",
"ionic",
"nestjs",
"typescript"
],
"author": "",
"license": "MIT",
"devDependencies": {
"typescript": "^5.7.2"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
}
}