forked from react-native-community/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.21 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
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "node ./scripts/build.js",
"build-clean": "rm -rf ./packages/*/build",
"watch": "node ./scripts/watch.js",
"test": "jest",
"lint": "eslint . --cache --report-unused-disable-directives",
"flow-check": "flow check",
"postinstall": "yarn build",
"publish": "yarn build-clean && yarn build && lerna publish"
},
"dependencies": {
"@babel/core": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.2.0",
"@babel/plugin-transform-strict-mode": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/preset-flow": "^7.0.0",
"@react-native-community/eslint-config": "^0.0.2",
"babel-jest": "^24.0.0",
"chalk": "^2.4.2",
"eslint": "^5.10.0",
"flow-bin": "^0.94.0",
"glob": "^7.1.3",
"jest": "^24.0.0",
"lerna": "^3.10.6",
"micromatch": "^3.1.10",
"mkdirp": "^0.5.1",
"string-length": "^2.0.0"
},
"eslintConfig": {
"extends": "@react-native-community",
"env": {
"es6": true,
"jest": true,
"node": true
},
"rules": {
"prettier/prettier": [2, "fb"]
}
},
"jest": {
"projects": [
"packages/*"
]
}
}