forked from Blumlaut/EasyAdmin
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 843 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "easyadmin",
"private": true,
"version": "8.0a3.0",
"scripts": {
"build": "npm run build:bot && npm run build:nui",
"build:bot": "npm --prefix bot run build",
"build:nui": "npm --prefix nui run build",
"install:all": "npm --prefix bot i --include=dev --legacy-peer-deps && npm --prefix nui i --include=dev --legacy-peer-deps",
"lint:all": "npm --prefix bot run lint && npm --prefix nui run check",
"lint:bot": "npm --prefix bot run lint",
"lint:nui": "npm --prefix nui run check",
"typecheck": "npm run typecheck:bot && npm run typecheck:nui",
"typecheck:bot": "npm --prefix bot run typecheck",
"typecheck:nui": "npm --prefix nui run typecheck",
"test:nui": "npm --prefix nui run test",
"watch:all": "node scripts/watch-all.mjs"
},
"engines": {
"node": "^22.0.0"
}
}