This repository was archived by the owner on Jul 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.96 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 1.96 KB
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
62
63
64
65
66
67
{
"name": "junction-native",
"version": "0.1.0",
"private": true,
"devDependencies": {
"babel": "^6.23.0",
"babel-eslint": "^7.2.1",
"babel-plugin-module-resolver": "^2.7.0",
"babel-plugin-ramda": "^1.2.0",
"codecov": "^2.1.0",
"cross-env": "^4.0.0",
"danger": "https://github.com/delianides/danger-js/releases/download/0.14.2/danger-0.14.2.tgz",
"eslint": "^3.18.0",
"eslint-import-resolver-babel-module": "^3.0.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-prettier": "^2.0.1",
"eslint-plugin-react": "^6.10.3",
"eslint-plugin-react-native": "^2.3.1",
"flow-bin": "^0.38.0",
"jest-expo": "^0.3.0",
"lint-staged": "^3.4.0",
"pre-commit": "^1.2.2",
"prettier": "^0.22.0",
"react-native-scripts": "0.0.26",
"react-test-renderer": "~15.4.1"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.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",
"watch": "node node_modules/jest/bin/jest.js --watch",
"lint-staged": "lint-staged",
"lint": "eslint ./src",
"flow": "flow",
"flow-stop": "flow stop",
"coverage": "node node_modules/jest/bin/jest.js --coverage && codecov",
"danger": "danger run --verbose"
},
"lint-staged": {
"*.js": [
"eslint",
"node node_modules/jest/bin/jest.js --bail --findRelatedTests"
]
},
"pre-commit": "lint-staged",
"jest": {
"preset": "jest-expo",
"coverageDirectory": "./coverage/",
"collectCoverageFrom": [
"src/**/*.js",
"!**/node_modules/**",
"!src/test-utils/**",
"!src/further/**"
]
},
"dependencies": {
"@jongold/further": "^1.0.3",
"expo": "^15.1.0",
"fast-memoize": "^2.2.7",
"ramda": "^0.23.0",
"react": "~15.4.0",
"react-native": "0.42.3"
}
}