-
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
34 lines (34 loc) · 970 Bytes
/
package.json
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
{
"name": "wuffle-builder",
"description": "A task board for GitHub issues",
"version": "0.0.0",
"license": "MIT",
"private": true,
"scripts": {
"all": "run-s lint test build",
"lint": "npm run lint --workspaces",
"dev": "NODE_ENV=development lerna run dev --stream",
"build:board": "npm run build --workspace packages/board",
"build": "NODE_ENV=production run-s build:*",
"test": "NODE_ENV=test npm run test --workspaces",
"auto-test:app": "npm run auto-test --workspace packages/app",
"auto-test": "NODE_ENV=test run-s auto-test:*",
"start": "npm start --workspace packages/app",
"prerelease": "npm run all",
"release": "lerna publish",
"af": "npm audit fix"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"lerna": "^8.1.3",
"npm-run-all2": "^7.0.0"
},
"engines": {
"node": ">= 18",
"npm": ">= 8"
},
"workspaces": [
"packages/*"
]
}