-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.33 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.33 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
{
"name": "ReactNativeSeed",
"version": "0.0.1",
"private": true,
"scripts": {
"bundle": "node node_modules/react-native/local-cli/cli.js bundle --entry-file index.ios.js --bundle-output iOS/main.jsbundle",
"ci": "npm run bundle && npm run lint",
"lint": "eslint src --ext=js --ext=jsx",
"lint:watch": "nodemon --exec \"npm run lint\"",
"reset": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf node_modules && npm cache clean && npm install",
"start": "node node_modules/react-native/local-cli/cli.js start --resetCache"
},
"dependencies": {
"apphub": "^0.5.1",
"eslint-plugin-import": "^1.2.0",
"firebase": "^2.4.1",
"moment": "^2.11.2",
"react": "^0.14.7",
"react-native": "^0.22.2",
"redux": "^3.3.1",
"redux-freeze": "^0.1.2",
"redux-logger": "^2.6.1",
"redux-thunk": "^2.0.1"
},
"devDependencies": {
"babel-eslint": "^5.0.0",
"babel-plugin-transform-class-properties": "^6.5.2",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react-native": "^1.5.3",
"babel-preset-stage-1": "^6.3.13",
"eslint": "^2.4.0",
"eslint-config-airbnb": "^6.1.0",
"eslint-plugin-react": "^4.2.3",
"estraverse-fb": "^1.3.1",
"nodemon": "^1.9.1",
"react-native-cli": "^0.1.10"
}
}