forked from infinitered/reactotron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.56 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "reactotron-monorepo",
"private": true,
"version": "0.0.2",
"scripts": {
"bootstrap": "lerna bootstrap",
"clean": "lerna clean --yes",
"build": "lerna run build --scope 'reactotron-core-*' --scope 'reactotron-mst' --scope 'reactotron-redux*' --scope 'reactotron-apisauce' --scope 'reactotron-react-native' --scope 'reactotron-react-js'",
"copy-internal-deps": "cd packages/demo-react-native && ./copy-internal-deps.sh && cd ../..",
"test": "lerna run test --scope 'reactotron-core-*' --scope 'reactotron-redux*' --scope 'reactotron-apisauce'",
"lint": "lerna run lint",
"welcome": "yarn run clean && yarn run bootstrap && yarn run build && yarn run copy-internal-deps && yarn run lint -s",
"format": "lerna run format"
},
"devDependencies": {
"@types/jest": "^21.1.2",
"babel-eslint": "^8.0.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lerna": "2.11.0",
"lint-staged": "^4.2.3",
"prettier": "^1.7.4",
"standard": "^10.0.3",
"ts-jest": "^21.1.2",
"typescript": "^2.5.3"
},
"lint-staged": {
"subTaskConcurrency": 1,
"linters": {
"*.{ts,tsx}": [
"prettier --write",
"tslint --fix",
"git add"
],
"*.{js,jsx}": [
"prettier --write",
"standard --fix",
"git add"
]
}
},
"standard": {
"parser": "babel-eslint",
"ignore": [
"**/release/",
"**/dist/",
"**/build/",
"**/node_modules/",
"packages/reactotron-app/main.js"
],
"globals": [
"__DEV__",
"fetch"
]
}
}