-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
38 lines (38 loc) · 1.3 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
37
38
{
"name": "mobile-project-upf",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"bundle:ios": "node ./node_modules/react-native/local-cli/cli.js bundle --platform ios --entry-file index.js --bundle-output ios/MobileProjectUPF/main.jsbundle --dev=false --verbose",
"bundle:android": "node ./node_modules/react-native/local-cli/cli.js bundle --platform android --entry-file index.js --bundle-output android/main.jsbundle --dev=false --verbose",
"test:watch": "jest --watch",
"lint": "eslint src test",
"coverage": "rimraf coverage && jest --coverage"
},
"dependencies": {
"appcenter": "^1.4.0",
"appcenter-analytics": "^1.4.0",
"appcenter-crashes": "^1.4.0",
"react": "16.3.1",
"react-native": "0.55.2"
},
"devDependencies": {
"babel-jest": "22.4.3",
"babel-preset-react-native": "4.0.0",
"eslint": "^4.19.1",
"eslint-config-airbnb": "^16.1.0",
"eslint-config-google": "^0.9.1",
"eslint-plugin-babel": "^5.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.7.0",
"jest": "22.4.3",
"react-test-renderer": "16.3.1",
"rimraf": "^2.6.2"
},
"jest": {
"preset": "react-native"
}
}