forked from mmazzarolo/breathly-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.01 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.01 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
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "Breathly",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "react-native start",
"test": "jest",
"android": "react-native run-android",
"ios": "react-native run-ios",
"build:android": "cd android && ./gradlew bundleRelease",
"typecheck": "tsc -b",
"lint": "eslint 'src/' --ext .js,.jsx,.ts,.tsx",
"lint:fix": "yarn lint --fix",
"xcode": "open ios/breathly.xcworkspace",
"studio": "open -a /Applications/Android\\ Studio.app ./android/"
},
"dependencies": {
"@react-native-community/async-storage": "^1.10.1",
"immer": "^6.0.5",
"react": "16.11.0",
"react-native": "0.62.2",
"react-native-haptic": "oblador/react-native-haptic#package-cleanup",
"react-native-keep-awake": "corbt/react-native-keep-awake#146c2db",
"react-native-sound": "^0.11.0",
"react-native-splash-screen": "^3.2.0"
},
"devDependencies": {
"@babel/core": "^7.6.2",
"@babel/runtime": "^7.6.2",
"@types/jest": "^25.2.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.10",
"@types/react-test-renderer": "^16.9.2",
"babel-jest": "^24.9.0",
"eslint": "^7.0.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-react-app": "^6.2.2",
"husky": "^4.2.5",
"jest": "^24.9.0",
"lint-staged": "^10.2.2",
"metro-react-native-babel-preset": "^0.58.0",
"prettier": "^2.0.5",
"react-test-renderer": "16.11.0",
"typescript": "^3.9.2"
},
"jest": {
"preset": "react-native"
},
"eslintConfig": {
"extends": [
"plugin:prettier/recommended",
"plugin:react-app/recommended"
],
"plugins": [
"react"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn typecheck"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"eslint --fix",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
]
}
}