-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1 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
{
"name": "example-list",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"android": "react-native run-android",
"ios": "react-native run-ios",
"test": "jest",
"clean": "yarn clean-watchman; yarn clean-node; yarn clean-react; yarn clean-metro; yarn clean-jest;",
"clean-jest": "rm -rf $TMPDIR/jest_*;",
"clean-metro": "rm -rf $TMPDIR/metro-cache-*; rm -rf $TMPDIR/metro-bundler-cache-*;",
"clean-node": "rm -rf node_modules/;",
"clean-react": "rm -rf $TMPDIR/react-*; rm -rf $TMPDIR/react-native-packager-cache-*;",
"clean-watchman": "watchman watch-del-all;",
"clean:install": "yarn clean && yarn install"
},
"dependencies": {
"react": "^16.3.0-alpha.1",
"react-native": "0.54.2"
},
"devDependencies": {
"babel-jest": "20.0.3",
"babel-plugin-module-resolver": "^3.1.1",
"babel-preset-react-native": "^2.1.0",
"jest": "20.0.4",
"react-test-renderer": "16.0.0-alpha.12"
},
"jest": {
"preset": "react-native"
}
}