-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.95 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
57
58
59
60
61
{
"name": "megatron",
"main": "src/main.js",
"scripts": {
"start": "react-native-scripts start",
"eject": "react-native-scripts eject",
"android": "react-native-scripts android",
"ios": "react-native-scripts ios",
"test": "node node_modules/jest/bin/jest.js",
"test-watch": "node node_modules/jest/bin/jest.js --watch",
"commitizen": "git cz",
"lint-check": "eslint ./src/ ./__tests__/",
"lint-fix": "eslint --fix ./src/ ./__tests__/",
"ci": "npm run precommit && npm run prepush",
"prepush": "npm test",
"precommit": "npm run lint-check",
"danger-test": "DANGER_FAKE_CI=YEP yarn danger",
"flow-check": "flow --show-all-errors",
"flow-install-libdefs": "flow-typed install",
"upload-coverage": "codecov && codeclimate-test-reporter < ./coverage/lcov.info",
"update-coverage": "jest --coverage && npm run upload-coverage"
},
"jest": {
"preset": "jest-expo",
"setupTestFrameworkScriptFile": "./node_modules/jest-enzyme/lib/index.js",
"testMatch": [
"**/__tests__/**/*.test.js?(x)"
]
},
"dependencies": {
"expo": "^20.0.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "16.0.0-alpha.12",
"react-native": "^0.47.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"codeclimate-test-reporter": "^0.5.0",
"codecov": "^2.3.0",
"commitizen": "^2.9.6",
"cz-conventional-changelog": "^2.0.0",
"danger": "^2.0.0-alpha.15",
"enzyme": "2.9.1",
"eslint": "^4.7.1",
"eslint-config-airbnb": "^15.1.0",
"eslint-plugin-flowtype": "^2.35.1",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^6.0.2",
"eslint-plugin-react": "^7.3.0",
"flow-bin": "0.49.1",
"flow-typed": "^2.1.5",
"husky": "^0.14.3",
"jest-enzyme": "3.8.0",
"jest-expo": "~20.0.0",
"jest-fetch-mock": "^1.2.1",
"react-dom": "^16.0.0",
"react-native-scripts": "1.3.1",
"react-test-renderer": "16.0.0-alpha.12"
}
}