-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 753 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 753 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "buildr",
"version": "0.1.18",
"private": true,
"license": "MIT",
"scripts": {
"install": "lerna bootstrap",
"build": "lerna run build --stream",
"dev": "lerna run dev --stream",
"test": "lerna run test --stream",
"format": "prettier --write ./packages/**/*.ts",
"lint": "prettier --list-different ./packages/**/*.ts",
"start": "lerna run start --parallel"
},
"dependencies": {
"lerna": "^3.8.0"
},
"devDependencies": {
"prettier": "1.15.3"
}
}