forked from akveo/kittenTricks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 2.13 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
{
"name": "kitten-tricks",
"version": "2.0.1",
"private": true,
"license": "MIT",
"author": "akveo <[email protected]>",
"repository": "git+https://github.com/akveo/kittenTricks.git",
"bugs": {
"url": "https://github.com/akveo/kittenTricks/issues"
},
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start -c",
"start:dev": "npm run env:set -- dev && npm start -- -c",
"start:prod": "npm run env:set -- prod && npm start -- -c",
"env:set": "./scripts/environment/set-env.sh",
"build": "tsc -p ./tsconfig.json",
"clean": "rimraf ./dist",
"lint": "tslint -p ./tsconfig.json",
"lint:fix": "npm run lint -- --fix",
"ci:install": "npm ci",
"ci:lint": "npm run lint",
"ci:build": "npm run env:set -- prod && npm run build",
"conventional-changelog": "conventional-changelog",
"version:changelog": "npm run conventional-changelog -- -i ./CHANGELOG.md -s"
},
"dependencies": {
"@eva-design/eva": "^1.2.0",
"@ui-kitten/eva-icons": "^4.2.0",
"expo": "^35.0.0",
"expo-analytics": "^1.0.11",
"expo-camera": "^7.0.0",
"expo-constants": "^7.0.0",
"expo-media-library": "^7.0.0",
"expo-permissions": "^7.0.0",
"react": "^16.8.6",
"react-native": "https://github.com/expo/react-native/archive/sdk-35.0.0.tar.gz",
"react-native-gesture-handler": "^1.3.0",
"react-native-keyboard-aware-scroll-view": "^0.8.0",
"react-native-reanimated": "^1.2.0",
"react-native-screens": "^1.0.0-alpha.23",
"react-native-svg": "^9.9.4",
"react-native-ui-kitten": "^4.2.0",
"react-navigation": "^4.0.10",
"react-navigation-stack": "^1.9.4",
"react-navigation-tabs": "^2.5.6"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/runtime": "^7.6.0",
"@types/react": "^16.9.2",
"@types/react-native": "^0.60.15",
"@types/react-navigation": "^3.0.8",
"babel-core": "^7.0.0-bridge.0",
"babel-plugin-module-resolver": "^3.2.0",
"conventional-changelog-cli": "^2.0.21",
"husky": "^1.1.2",
"rimraf": "^2.6.2",
"scheduler": "^0.16.2",
"tslint": "^5.12.1",
"typescript": "^3.6.3"
}
}