-
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.37 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.37 KB
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
72
73
{
"name": "dooboo",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"build": "rm -rf ./dist && tsc",
"codecov": "codecov",
"tsc": "tsc",
"start": "tsc -w && expo start",
"production": "expo start --no-dev",
"android": "expo start --android",
"ios": "expo start --ios",
"eject": "expo eject",
"test": "node node_modules/jest/bin/jest.js",
"lint": "eslint src/**/**/*.ts && eslint src/**/**/*.tsx",
"cp:config": "cp config.sample.ts config.ts"
},
"private": true,
"version": "0.0.0",
"description": "Expo starter from dooboo-cli.",
"author": "hyochan <dooboolab@gmail.com>",
"license": "",
"dependencies": {
"expo": "^33.0.7",
"expo-localization": "^5.0.1",
"firebase": "^6.2.3",
"i18n-js": "^3.3.0",
"moment": "^2.24.0",
"npm-check-updates": "^3.1.11",
"react": "16.8.3",
"react-dom": "^16.8.6",
"react-firebase-hooks": "^2.0.0",
"react-native": "https://github.com/expo/react-native/archive/sdk-33.0.0.tar.gz",
"react-native-animatable": "^1.3.2",
"react-native-web": "^0.11.4",
"react-navigation": "^3.11.0",
"sentry-expo": "^1.13.0",
"styled-components": "^4.3.2"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-proposal-decorators": "7.4.4",
"@babel/plugin-proposal-object-rest-spread": "^7.4.4",
"@babel/plugin-transform-runtime": "7.4.4",
"@babel/preset-typescript": "^7.3.3",
"@types/expo": "^32.0.13",
"@types/jest": "^24.0.15",
"@types/react": "^16.8.22",
"@types/react-native": "0.57.63",
"@types/react-test-renderer": "^16.8.2",
"@types/styled-components": "^4.1.16",
"@typescript-eslint/parser": "^1.11.0",
"babel-jest": "^24.8.0",
"babel-preset-expo": "^5.2.0",
"babel-preset-react-native": "4.0.1",
"codecov": "^3.5.0",
"eslint": "5",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"jest-expo": "^33.0.2",
"jest-expo-ts": "^22.0.1",
"react-native-testing-library": "^1.9.1",
"react-native-typescript-transformer": "^1.2.12",
"react-test-renderer": "16.8.3",
"ts-jest": "^24.0.2",
"tslib": "^1.10.0",
"typescript": "^3.5.2"
}
}