-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 1.04 KB
/
package.json
File metadata and controls
33 lines (33 loc) · 1.04 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
{
"name": "highreview",
"version": "0.1.0",
"license": "Apache-2.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"postinstall": "npm --prefix apps/cli install && npm --prefix apps/web install",
"dev": "concurrently \"npm run dev:cli\" \"npm run dev:web\"",
"dev:cli": "npm --prefix apps/cli run dev",
"dev:web": "npm --prefix apps/web run dev",
"build": "npm --prefix apps/cli run build && npm --prefix apps/web run build",
"build:cli": "npm --prefix apps/cli run build",
"build:web": "npm --prefix apps/web run build",
"start": "npm --prefix apps/cli run start",
"test": "npm --prefix apps/cli run test; npm --prefix apps/web run test",
"lint": "npm --prefix apps/cli run lint; npm --prefix apps/web run lint",
"format": "npm --prefix apps/cli run format; npm --prefix apps/web run format"
},
"devDependencies": {
"concurrently": "^9.1.0",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
}
}