-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 2.14 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
62
63
64
65
66
{
"name": "AmbassadorOfArcadia",
"version": "1.2.0",
"private": true,
"homepage": "https://github.com/gleydson/AmbassadorOfArcadia",
"bugs": {
"url": "https://github.com/gleydson/AmbassadorOfArcadia/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/gleydson/AmbassadorOfArcadia.git"
},
"license": "MIT",
"author": {
"name": "Gleydson Rodrigues",
"email": "[email protected]",
"url": "https://github.com/gleydson"
},
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"new:component": "./scripts/new_component.sh",
"start:android": "react-native run-android",
"generate:bundle:android": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res && yarn start:android",
"clean:modules": "rm -Rf node_modules && rm yarn.lock && yarn cache clean && cd android && gradlew clean cd .. && react-native run-android yarn",
"test": "jest",
"lint": "eslint ./",
"lint:fix": "eslint --ext .js --fix src"
},
"dependencies": {
"prop-types": "^15.6.2",
"react": "16.6.1",
"react-native": "0.57.7",
"react-navigation": "^3.0.7",
"react-redux": "^6.0.0",
"redux": "^4.0.1",
"redux-persist": "^5.10.0",
"redux-saga": "^0.16.2",
"reduxsauce": "^1.0.0",
"seamless-immutable": "^7.1.4"
},
"devDependencies": {
"babel-eslint": "^10.0.1",
"babel-jest": "23.6.0",
"enzyme": "^3.8.0",
"enzyme-adapter-react-16": "^1.7.1",
"eslint": "^5.10.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "23.6.0",
"metro-react-native-babel-preset": "0.50.0",
"react-test-renderer": "16.6.1",
"reactotron-react-native": "^2.1.3"
},
"jest": {
"preset": "react-native",
"testMatch": ["<rootDir>/__tests__/**/?(*.)(spec|test).js?(x)"],
"setupFiles": ["<rootDir>/__tests__/setup.js"]
},
"rnpm": {
"assets": [
"./src/assets/fonts/"
]
}
}