-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.11 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.11 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
68
69
70
71
72
73
{
"name": "react-native-template",
"version": "0.1.0",
"private": true,
"devDependencies": {
"axios-mock-adapter": "^1.10.0",
"babel-jest": "^22.0.4",
"babel-preset-env": "^1.6.1",
"cavy": "git://github.com/TGPSKI/cavy.git#cavy-suites",
"chai": "^4.1.2",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-to-json": "^3.3.0",
"jest": "^22.0.5",
"jest-expo": "24.0.0",
"prettier-eslint": "^8.7.1",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^16.2.0",
"react-native-scripts": "1.8.1",
"react-test-renderer": "16.2.0",
"redux-mock-store": "^1.4.0"
},
"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",
"testWithCoverage": "./node_modules/.bin/jest --coverage"
},
"jest": {
"preset": "jest-expo",
"modulePathIgnorePatterns": [
"/node_modules/.*/react-native/",
"/node_modules/.*/react/"
],
"transformIgnorePatterns": [
"/node_modules/(?!react-native|react-navigation)/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"coveragePathIgnorePatterns": [
"/node_modules/",
"/specs/"
]
},
"dependencies": {
"axios": "^0.17.1",
"buffer": "^5.0.8",
"eslint-config-rallycoding": "^3.2.0",
"eslint-rallycoding": "^1.2.0",
"expo": "^24.0.0",
"lodash": "^4.17.4",
"prop-types": "^15.6.0",
"react": "16.0.0",
"react-localize-redux": "^2.13.7",
"react-native": "https://github.com/expo/react-native/archive/sdk-24.0.0.tar.gz",
"react-native-extended-stylesheet": "^0.8.0",
"react-navigation": "^1.0.0-beta.23",
"react-redux": "^5.0.6",
"redux": "^3.7.2",
"redux-persist": "^5.4.0",
"redux-thunk": "^2.2.0",
"remote-redux-devtools": "^0.5.12"
},
"prettier": {
"singleQuote": true,
"printWidth": 100,
"eslintIntegration": true
}
}