-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 819 Bytes
/
Copy pathpackage.json
File metadata and controls
26 lines (26 loc) · 819 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
{
"name": "opencli-admin",
"private": true,
"version": "0.4.0",
"workspaces": [
"chrome/extension-src"
],
"scripts": {
"dev": "nx run extension:dev",
"dev:frontend": "node scripts/frontend.mjs dev",
"build:frontend": "node scripts/frontend.mjs build",
"lint:frontend": "node scripts/frontend.mjs lint",
"typecheck:frontend": "node scripts/frontend.mjs typecheck",
"dev:extension": "nx run extension:dev",
"build": "nx run extension:build",
"build:extension": "nx run extension:build",
"test": "nx run-many --target=test --all --parallel",
"typecheck": "nx run-many --target=typecheck --all --parallel",
"format": "nx format:write",
"lint": "nx run-many --target=lint --all --parallel",
"nx": "nx"
},
"devDependencies": {
"nx": "^20.6.0"
}
}