-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.77 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.77 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
{
"name": "capstone-simple-monorepo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"backend": "npm run dev -w backend",
"frontend": "npm run dev -w frontend",
"start": "concurrently \"npm run backend\" \"npm run frontend\"",
"build": "npm run build -w backend && npm run build -w frontend",
"build:force": "npm run build -w backend && npm run build -w frontend -- --force",
"build:backend": "npm run build -w backend",
"build:frontend": "npm run build -w frontend",
"start:prod": "concurrently \"npm run start -w backend\" \"npm run preview -w frontend\"",
"start:prod:backend": "NODE_ENV=production npm run start -w backend",
"start:prod:frontend": "NODE_ENV=production npm run preview -w frontend",
"test:backend": "npm test -w backend",
"test:frontend": "npm test -w frontend",
"lint": "eslint \"apps/**/src/**/*.{ts,tsx}\" \"packages/**/src/**/*.{ts,tsx}\"",
"lint:fix": "eslint \"apps/**/src/**/*.{ts,tsx}\" \"packages/**/src/**/*.{ts,tsx}\" --fix",
"format": "prettier --write \"apps/**/src/**/*.{ts,tsx,json,css,md}\" \"packages/**/src/**/*.{ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"apps/**/src/**/*.{ts,tsx,json,css,md}\" \"packages/**/src/**/*.{ts,tsx,json,css,md}\""
},
"author": "LemonCloud",
"license": "Apache-2.0",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2"
}
}