-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.2 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.2 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
{
"name": "typescript-full-stack-monorepo-template",
"version": "0.0.1",
"description": "",
"private": true,
"type": "module",
"workspaces": [
"apps/web",
"apps/api"
],
"scripts": {
"format": "npm run format:api && npm run format:web",
"format:api": "npm run format --workspace=api",
"format:web": "npm run format --workspace=web",
"lint": "npm run lint:api && npm run lint:web",
"lint:api": "npm run lint --workspace=api",
"lint:web": "npm run lint --workspace=web",
"build": "npm run build:api && npm run build:web",
"build:web": "npm run build --workspace=web",
"build:api": "npm run clean --workspace=api && npm run build --workspace=api",
"start": "npm run start --workspace=api",
"monitor:api": "nodemon --config nodemon.api.json",
"monitor:web": "nodemon --config nodemon.web.json",
"monitor": "nodemon ."
},
"engines": {
"node": ">=24.0.0",
"npm": ">=11.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/far-analytics/typescript-full-stack-monorepo-template.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"nodemon": "^3.1.10",
"prettier": "^3.8.1"
}
}