-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
94 lines (94 loc) · 3.37 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "everyday-luck-app",
"main": "node_modules/expo/AppEntry.js",
"author": "孫瑪思",
"private": true,
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/bonham000/everyday-luck-app"
},
"scripts": {
"start": "expo start",
"tsc": "tsc",
"prettier:fix": "prettier --config .prettierrc --write './{src,test}/**/*.{ts,tsx,json}'",
"prettier:fix:vocabulary": "prettier --config .prettierrc --write './vocabulary/**/*.{ts,tsx,json}'",
"prettier:check": "prettier --config .prettierrc --list-different './{src,test}/**/*.{ts,tsx}'",
"format": "npm run prettier:fix",
"test:jest": "jest --silent --runInBand",
"test:watch": "jest --watch",
"test:update-snapshots": "jest --updateSnapshot",
"test:format": "npm run prettier:check && npm run tsc",
"test": "yarn run prettier:check && yarn run tsc && yarn run test:jest",
"test:clear": "jest --clearCache && rm -rf build",
"build:ios": "expo build:ios",
"build:android": "expo build:android",
"upload:ios": "expo upload:ios",
"cli": "mv script.babelrc .babelrc",
"cli:reset": "mv .babelrc script.babelrc",
"t": "tsc && babel-node build/vocabulary/translate.js",
"custom-list": "tsc && babel-node build/vocabulary/add_list.js",
"add:list": "yarn cli && yarn custom-list && yarn cli:reset && yarn format",
"publish": "EXPO_USE_DEV_SERVER=true expo publish --non-interactive"
},
"dependencies": {
"@emotion/native": "^11.0.0",
"@emotion/react": "^11.1.2",
"@google-cloud/translate": "^6.2.0",
"@react-native-community/netinfo": "6.0.0",
"axios": "^0.21.1",
"babel-cli": "^6.26.0",
"chinese-to-pinyin": "^1.3.1",
"expo": "^42.0.0",
"expo-av": "~9.2.3",
"expo-constants": "~11.0.1",
"expo-gl": "~10.4.2",
"expo-permissions": "~12.1.1",
"expo-pixi": "^1.2.0",
"expo-speech": "~9.2.0",
"expo-updates": "~0.8.2",
"react": "16.13.1",
"react-native": "https://github.com/expo/react-native/archive/sdk-42.0.0.tar.gz",
"react-native-action-button": "^2.8.5",
"react-native-confetti": "^0.1.0",
"react-native-deck-swiper": "2.0.5",
"react-native-dialog": "6.1.2",
"react-native-flip-card": "^3.5.2",
"react-native-gesture-handler": "~1.10.2",
"react-native-paper": "4.4.1",
"react-native-reanimated": "2.1.0",
"react-native-safe-area-context": "3.2.0",
"react-native-screens": "~3.4.0",
"react-native-svg": "12.1.1",
"react-navigation": "^4.4.4",
"react-navigation-drawer": "^2.7.1",
"react-navigation-stack": "^2.10.4",
"react-navigation-tabs": "^2.11.1",
"tslib": "^2.0.3",
"uuid": "^3.3.3"
},
"devDependencies": {
"@types/expo": "^32.0.13",
"@types/expo__vector-icons": "^6.2.3",
"@types/jest": "^23.3.13",
"@types/node": "^10.12.18",
"@types/react": "~16.9.35",
"@types/react-native": "~0.63.2",
"@types/react-native-dialog": "^4.0.2",
"@types/react-native-sortable-list": "^0.0.7",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^26.6.3",
"babel-plugin-inline-dotenv": "^1.2.0",
"babel-plugin-jest-hoist": "^26.6.2",
"babel-preset-env": "^1.7.0",
"babel-preset-expo": "8.3.0",
"jest-expo": "^42.0.0",
"prettier": "^1.15.3",
"schedule": "0.4.0",
"ts-jest": "^26.4.4",
"typescript": "~4.0.0"
},
"resolutions": {
"set-value": "^2.0.1"
}
}