-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.98 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
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "dismoi-mobile",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"bundle": "react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res",
"distribute": "firebase appdistribution:distribute",
"clean": "./scripts/clean.sh",
"start": "react-native start",
"applyKtlintRulesToAndroidStudio": "cd android && ./gradlew ktlintApplyToIdea",
"lintJavascript": "eslint '**/*.js'",
"lintKotlin": "cd android && ./gradlew removeUnusedResources",
"prettier": "prettier --write '**/*.js'"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && yarn lintKotlin"
}
},
"lint-staged": {
"**/*.js": [
"yarn prettier",
"yarn lintJavascript"
]
},
"dependencies": {
"@react-native-async-storage/async-storage": "^1.15.5",
"@react-native-community/masked-view": "^0.1.11",
"@react-navigation/native": "^5.9.4",
"@react-navigation/stack": "^5.14.4",
"moment": "^2.29.1",
"native-base": "^2.15.2",
"react": "16.13.1",
"react-native": "0.63.4",
"react-native-gesture-handler": "^1.10.3",
"react-native-safe-area-context": "^3.2.0",
"react-native-screens": "^3.1.1",
"react-native-shared-preferences": "^1.0.2",
"react-native-simple-radio-button": "^2.7.4"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"babel-jest": "^26.6.3",
"eslint": "^7.20.0",
"firebase-tools": "^9.16.0",
"husky": "^4.2.3",
"jest": "^26.6.3",
"lint-staged": "^10.5.4",
"metro-react-native-babel-preset": "^0.65.0",
"prettier": "2.2.1",
"react-test-renderer": "16.13.1"
},
"jest": {
"preset": "react-native"
}
}