-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "react-native-notebook",
"description": "A not so simple boilerplate with some alleged React Native best practices.",
"slug": "react-native-notebook",
"repository": "https://github.com/ReactBangalore/advanced-react-native-workshop",
"license": "MIT",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest"
},
"dependencies": {
"react": "16.3.1",
"react-native": "0.55.4",
"react-native-vector-icons": "5.0.0",
"react-navigation": "2.12.1",
"styled-components": "^3.4.5"
},
"devDependencies": {
"babel-eslint": "9.0.0",
"babel-jest": "23.4.2",
"babel-preset-react-native": "4.0.0",
"eslint": "5.4.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-jsx-a11y": "6.1.1",
"eslint-plugin-react": "7.11.1",
"jest": "23.5.0",
"react-test-renderer": "16.4.2",
"reactotron-react-native": "2.1.0"
},
"jest": {
"preset": "react-native"
}
}