forked from nikku/wuffle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.11 KB
/
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.3.0",
"license": "MIT",
"private": true,
"scripts": {
"all": "run-s lint test build",
"lint": "run-s lint:*",
"lint:app": "cd packages/app && npm run lint",
"lint:board": "cd packages/board && npm run lint",
"dev:app": "cd packages/app && npm run dev",
"dev:board": "cd packages/board && npm run dev",
"dev": "NODE_ENV=development run-p dev:* -l",
"build:board": "cd packages/board && npm run build",
"build": "NODE_ENV=production run-s build:*",
"test:app": "cd packages/app && npm test",
"test:board": "cd packages/board && npm test",
"test": "NODE_ENV=test run-s test:*",
"auto-test:app": "cd packages/app && npm run auto-test",
"auto-test": "NODE_ENV=test run-s auto-test:*",
"start": "cd packages/app && npm run start",
"postinstall": "NODE_ENV=development lerna bootstrap",
"prerelease": "npm run all",
"release": "lerna publish"
},
"devDependencies": {
"lerna": "^3.18.1",
"npm-run-all": "^4.1.5"
},
"engines": {
"node": ">= 10.0"
}
}