-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.22 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.22 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
{
"name": "react-native-redux-todo-list",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"ios": "react-native run-ios",
"android": "react-native run-android",
"lint": "eslint app/",
"test": "npm run lint"
},
"dependencies": {
"react": "15.0.2",
"react-native": "0.26.3",
"react-native-navbar": "^1.5.0",
"react-native-vector-icons": "^2.0.3",
"react-redux": "^4.4.5",
"redux": "^3.5.2"
},
"devDependencies": {
"babel-eslint": "^6.0.4",
"eslint": "^2.11.1",
"eslint-plugin-react": "^5.1.1",
"eslint-plugin-react-native": "^1.1.0-beta"
},
"author": "viruschidai@gmail.com",
"license": "MIT",
"description": "A sample React Native Todo app which uses Redux for managing app state",
"main": "index.ios.js",
"repository": {
"type": "git",
"url": "git+https://github.com/uiheros/react-native-redux-todo-list.git"
},
"keywords": [
"react",
"react-native",
"redux",
"todo",
"todolist"
],
"bugs": {
"url": "https://github.com/uiheros/react-native-redux-todo-list/issues"
},
"homepage": "https://github.com/uiheros/react-native-redux-todo-list#readme"
}