-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
44 lines (44 loc) · 1.14 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
{
"name": "@staart/native",
"version": "1.0.1",
"repository": "[email protected]:o15y/staart-native",
"author": "Anand Chowdhary <[email protected]>",
"license": "MIT",
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"web": "expo start --web",
"start": "react-native start",
"test": "jest",
"increment-package": "node setup/increment.js"
},
"dependencies": {
"expo": "^34.0.1",
"react": "16.8.3",
"react-dom": "16.8.3",
"react-native": "0.59.10",
"react-native-gesture-handler": "~1.3.0",
"react-native-reanimated": "~1.1.0",
"react-native-screens": "1.0.0-alpha.22",
"react-native-unimodules": "~0.5.2",
"react-native-web": "^0.11.4"
},
"devDependencies": {
"@babel/core": "^7.0.0",
"@types/react": "^16.8.23",
"@types/react-native": "^0.57.65",
"babel-preset-expo": "^6.0.0",
"fs-extra": "^8.1.0",
"husky": "^3.0.8",
"jest-expo": "^34.0.0",
"typescript": "^3.4.5"
},
"husky": {
"hooks": {
"pre-commit": "yarn increment-package && git add ."
}
},
"jest": {
"preset": "react-native"
}
}