-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.48 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
{
"name": "AwesomeTalks",
"version": "0.0.1",
"private": true,
"license": "MIT",
"scripts": {
"precommit": "lint-staged",
"lint": "eslint index.js src test",
"run-ios": "react-native run-ios",
"run-android": "react-native run-android",
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"watch-test": "jest --watch"
},
"dependencies": {
"apollo-boost": "^0.1.7",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"prop-types": "^15.6.1",
"ramda": "^0.25.0",
"react": "16.3.1",
"react-apollo": "^2.1.4",
"react-native": "0.55.4",
"react-native-navigation": "^1.1.466",
"react-native-search-bar": "^3.4.2",
"react-native-youtube": "^1.1.0",
"styled-components": "^3.3.2"
},
"devDependencies": {
"babel-eslint": "^8.2.5",
"babel-jest": "23.0.1",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-react": "^7.9.1",
"eslint-plugin-standard": "^3.1.0",
"husky": "^0.14.3",
"jest": "23.1.0",
"lint-staged": "^7.1.3",
"prettier": "^1.13.4",
"react-test-renderer": "16.3.1"
},
"jest": {
"preset": "react-native"
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"rnpm": {
"assets": [
"./src/style/themes/fonts"
]
}
}