-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
32 lines (32 loc) · 1.06 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
{
"name": "rn_relay_drawer_template",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"rc-start": "npm start -- --reset-cache",
"clean": "rm -rf $TMPDIR/react-* && watchman watch-del-all && npm cache clean",
"clean-start": "npm run clean && npm run rc-start",
"fresh-install": "rm -rf $TMPDIR/react-* && watchman watch-del-all && rm -rf ios/build/ModuleCache/* && rm -rf node_modules/ && npm cache clean && npm install",
"fresh-start": "npm run fresh-install && npm run rc-start",
"reload": "babel-node data/get_graphql_schema.js"
},
"metadata": {
"graphql": {
"schema": "./data/schema.json"
}
},
"dependencies": {
"react": "15.3.1",
"react-native": "0.32.0",
"react-native-drawer": "^2.3.0",
"react-native-router-flux": "^3.35.0",
"react-relay": "^0.9.3"
},
"devDependencies": {
"autobind-decorator": "^1.3.3",
"babel-preset-react-native-stage-0": "^1.0.1",
"babel-relay-plugin-loader": "^0.9.0",
"graphql": "^0.7.0"
}
}