-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
57 lines (57 loc) · 1.82 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
{
"name": "alchemyUI",
"version": "1.0.0",
"main": "index.js",
"description": "A set of Elements and Compounds to create UI for the Wala app",
"repository": {
"type": "git",
"url": "git+https://github.com/GetWala/alchemy-ui.git"
},
"license": "MIT",
"author": "Dennis Ramirez",
"scripts": {
"start": "node node_modules/react-native/local-cli/cli.js start",
"test": "jest",
"createVersionPatch": "npm version patch && git push && git push --tags",
"createVersionMinor": "npm version minor && git push && git push --tags",
"createVersionMajor": "npm version major && git push && git push --tags"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"chroma-js": "^1.3.5",
"moment": "^2.22.2",
"prop-types": "^15.6.0",
"react-native-animatable": "^1.2.4",
"react-native-cached-image": "^1.4.3",
"react-native-country-picker-modal": "git+https://github.com/GetWala/react-native-country-picker-modal.git#semver:0.4.8",
"react-native-linear-gradient": "^2.4.0",
"react-native-masked-text": "^1.9.2",
"react-native-material-dropdown": "^0.11.1",
"react-native-material-menu": "^0.4.0",
"react-native-material-textfield": "^0.12.0",
"react-native-modal": "^7.0.0",
"react-native-modal-datetime-picker": "^6.0.0",
"react-native-modalbox": "^1.4.2",
"react-native-snap-carousel": "^3.7.5",
"react-native-spinkit": "^1.1.1",
"react-native-svg": "^6.3.1",
"react-native-swipeable-row": "^0.8.1",
"react-native-vector-icons": "^6.1.0"
},
"devDependencies": {
"babel-jest": "^23.6.0",
"babel-preset-react-native": "^4.0.1",
"jest": "^23.6.0",
"react": "16.6.1",
"react-native": "0.57.7",
"react-test-renderer": "16.6.1"
},
"jest": {
"preset": "react-native"
},
"rnpm": {
"assets": [
"./fonts"
]
}
}