-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
38 lines (38 loc) · 969 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
35
36
37
38
{
"name": "manta-style",
"private": true,
"scripts": {
"dev:flow": "echo \"Remove this when done\" && lerna run --parallel watch --scope=@manta-style/runtime --scope=@manta-style/builder-flowtype",
"format": "prettier --parser typescript './packages/**/*.ts' --write",
"bootstrap": "lerna bootstrap",
"build": "lerna run build",
"watch": "lerna run --parallel watch",
"test": "lerna run test -- --coverage && codecov -t $CODECOV_TOKEN"
},
"devDependencies": {
"codecov": "^3.1.0",
"husky": "^1.3.1",
"lerna": "^3.10.7",
"lint-staged": "^8.1.0",
"prettier": "^1.16.1"
},
"workspaces": [
"packages/core/*",
"packages/builders/*",
"packages/mocks/*",
"packages/servers/*"
],
"lint-staged": {
"linters": {
"*.{ts,json}": [
"prettier --write",
"git add"
]
}
},
"husky": {
"hooks": {
"pre-commit": "lerna run precommit && lint-staged"
}
}
}