-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.59 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
60
{
"dependencies": {
"@react-native-community/async-storage": "~1.11.0",
"@tensorflow/tfjs": "^2.3.0",
"@tensorflow/tfjs-react-native": "^0.3.0",
"expo": "~38.0.0",
"expo-camera": "^8.3.1",
"expo-gl": "^8.4.0",
"expo-gl-cpp": "^8.4.0",
"next": "^9.3.5",
"react": "~16.11.0",
"react-dom": "~16.11.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-38.0.2.tar.gz",
"react-native-fs": "^2.16.6",
"react-native-screens": "~2.9.0",
"react-native-web": "0.11.7",
"styled-components": "^5.2.0"
},
"devDependencies": {
"@babel/core": "7.9.0",
"@expo/next-adapter": "^2.1.0",
"@react-native-community/eslint-config": "^2.0.0",
"@types/react": "~16.9.41",
"@types/react-dom": "~16.9.8",
"@types/react-native": "~0.62.13",
"@types/styled-components": "^5.1.3",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.6",
"eslint-plugin-react-hooks": "^4.1.0",
"husky": "^4.3.0",
"lint-staged": "^10.3.0",
"prettier": "^2.1.1",
"typescript": "~3.8.3"
},
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo web",
"eject": "expo eject",
"build": "next build",
"lint": "eslint . -c .eslintrc.json --no-error-on-unmatched-pattern --fix --ext .js,.jsx,.ts,.tsx"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint",
"git add"
]
},
"private": true
}