-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
71 lines (71 loc) · 1.93 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "pebble-native",
"version": "1.2.1",
"license": "MIT",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "expo start",
"test": "jest",
"build": "expo build:android",
"build:dist": "rimraf dist && tsc -p tsconfig.json",
"prepublishOnly": "yarn build:dist"
},
"dependencies": {
"@react-native-community/datetimepicker": "^3.5.2",
"date-fns": "^1.30.1",
"just-debounce-it": "^1.1.0",
"name-initials": "^0.1.3",
"react-native-keyboard-aware-scroll-view": "^0.9.1",
"react-native-modal-datetime-picker": "^14.0.0",
"utility-types": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@react-native-community/async-storage": "^1.9.0",
"@storybook/addon-actions": "5.3.18",
"@storybook/addon-knobs": "^5.3.18",
"@storybook/addon-ondevice-knobs": "^5.3.18",
"@storybook/addon-ondevice-notes": "^5.3.18",
"@storybook/addons": "5.3.18",
"@storybook/react-native": "5.3.18",
"@types/jest": "^25.2.1",
"@types/just-debounce-it": "^1.1.0",
"@types/node": "^13.11.1",
"@types/react": "^16.9.34",
"@types/react-native": "^0.62.2",
"@types/storybook__addon-knobs": "^5.2.1",
"@types/storybook__react-native": "^5.2.1",
"@use-expo/font": "^2.0.0",
"babel-loader": "^8.1.0",
"expo": "^37.0.7",
"expo-font": "^8.1.1",
"husky": "^4.2.5",
"jest": "25.3.0",
"pebble-shared": "^2.0.1",
"prettier": "^2.0.4",
"pretty-quick": "^2.0.1",
"react": "16.9.0",
"react-native": "0.61.4",
"react-native-vector-icons": "^6.6.0",
"type-fest": "^0.13.1",
"typescript": "^3.8.3",
"webpack": "^4.42.1"
},
"jest": {
"preset": "react-native"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"peerDependencies": {
"pebble-shared": "^2.0.1",
"react": ">=16.9.0",
"react-native": ">=0.61.4"
}
}