forked from mobxjs/mobx-state-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 980 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
{
"private": true,
"dependencies": {},
"scripts": {
"clean": "lerna clean",
"build": "lerna run build",
"test": "cross-env CI=true lerna run test",
"coverage": "lerna run coverage",
"bootstrap": "npx [email protected] bootstrap --hoist",
"release": "yarn build && lerna publish"
},
"workspaces": [
"packages/mobx-state-tree",
"packages/mst-middlewares"
],
"lint-staged": {
"*.{ts,tsx,js,jsx}": [
"prettier --write --print-width 100 --tab-width 4 --no-semi",
"git add"
]
},
"devDependencies": {
"cross-env": "^5.1.1",
"husky": "^1.0.0",
"lerna": "^3.3.0",
"lint-staged": "^8.0.0",
"prettier": "^1.13.6",
"tslint": "^5.0.0",
"tslint-config-prettier": "^1.14.0",
"typescript": "~3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}