-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
28 lines (28 loc) · 879 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
{
"private": true,
"version": "0.1.0",
"license": "MIT",
"author": "pomber",
"repository": "https://github.com/pomber/hitchcock",
"workspaces": [
"{packages,examples}/*"
],
"scripts": {
"build": "lerna run build",
"build:packages": "lerna run build --no-private",
"build:watch": "lerna exec yarn build:watch --no-private --parallel",
"build:example": "run-s build:packages \"build --scope {1}\" --",
"start": "lerna exec yarn start --scope",
"start:example": "run-p build:watch \"start {1}\" --",
"format": "prettier --write '**/*.{js,jsx,css,md}'",
"format:check": "prettier-check '**/*.{js,jsx,css,md}'",
"test": "run-p format:check test:all",
"test:all": "lerna run test"
},
"devDependencies": {
"lerna": "^3.4.3",
"npm-run-all": "^4.1.3",
"prettier": "^1.14.3",
"prettier-check": "^2.0.0"
}
}