-
Notifications
You must be signed in to change notification settings - Fork 46
/
package.json
46 lines (46 loc) · 1.35 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
39
40
41
42
43
44
45
46
{
"name": "HAgnosticNews",
"version": "0.0.3",
"private": true,
"homepage": "http://grigio.github.io/HAgnostic-News",
"devDependencies": {
"jest-cli": "22.4.3",
"jest-react-native": "^18.0.0",
"react-scripts": "1.1.4",
"react-native-scripts": "1.14.0",
"jest-expo": "~27.0.0",
"react-test-renderer": "^16.3.2"
},
"main": "./node_modules/react-native-scripts/build/bin/crna-entry.js",
"dependencies": {
"expo": "^27.0.1",
"moment": "^2.15.1",
"react": "^16.3.1",
"react-art": "^16.3.2",
"react-dom": "~16.3.2",
"react-native": "0.55.4",
"react-native-material-design-styles": "^0.2.6",
"react-native-web": "0.6.1"
},
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"eject": "react-scripts eject",
"test": "./node_modules/.bin/jest",
"snapshot:update": " ./node_modules/.bin/jest --updateSnapshot",
"startrn": "react-native-scripts start",
"android:pkg:build": "cd android && ./gradlew assembleRelease",
"android:pkg:install": "adb install android/app/build/outputs/apk/app-release.apk"
},
"jest": {
"preset": "jest-react-native",
"testPathIgnorePatterns": [
"/node_modules/",
".+/(resources)/.+",
".+/(autoMockOff.js)"
]
},
"eslintConfig": {
"extends": "./node_modules/react-scripts/config/eslint.js"
}
}