-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.61 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.61 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
{
"name": "quick-math",
"version": "0.0.1",
"private": true,
"scripts": {
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"api": "json-server --watch ./src/db/db.json --host $(grep API_HOST .env | cut -d '=' -f2) --host $(grep API_PORT .env | cut -d '=' -f2)",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"prettier": "prettier --check './src/*' -w",
"sanity": "yarn tsc && yarn lint && yarn prettier",
"test": "jest /src",
"test:watch": "jest --watch /src",
"test:coverage": "jest --coverage /src",
"e2e:ios:build:debug": "detox build -c ios.sim.debug",
"e2e:ios:build:release": "detox build -c ios.sim.release",
"e2e:android:build:debug": "detox build -c android.emu.debug",
"e2e:android:build:release": "detox build -c android.emu.release",
"e2e:ios:run:debug": "detox test -c ios.sim.debug",
"e2e:ios:run:release": "detox test -c ios.sim.release",
"e2e:android:run:debug": "detox test -c android.emu.debug",
"e2e:android:run:release": "detox test -c android.emu.release"
},
"dependencies": {
"@react-navigation/bottom-tabs": "6.5.2",
"@react-navigation/native": "6.1.1",
"axios": "1.2.2",
"json-server": "0.17.1",
"react": "18.2.0",
"react-native": "0.70.6",
"react-native-config": "1.5.0",
"react-native-gesture-handler": "2.8.0",
"react-native-pager-view": "6.1.2",
"react-native-reanimated": "2.14.2",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "3.18.2",
"react-native-tab-view": "3.3.4",
"react-query": "3.39.2",
"styled-components": "5.3.6"
},
"devDependencies": {
"@babel/core": "7.13.0",
"@babel/runtime": "7.12.5",
"@react-native-community/eslint-config": "2.0.0",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/jest-native": "5.4.1",
"@testing-library/react-native": "11.5.2",
"@tsconfig/react-native": "2.0.2",
"@types/jest": "29.4.0",
"@types/react": "18.0.21",
"@types/react-native": "0.70.6",
"@types/react-test-renderer": "18.0.0",
"@types/styled-components": "5.1.26",
"@types/styled-components-react-native": "5.2.1",
"@typescript-eslint/eslint-plugin": "5.37.0",
"@typescript-eslint/parser": "5.37.0",
"babel-jest": "29.4.2",
"babel-plugin-module-resolver": "4.1.0",
"babel-preset-expo": "9.2.2",
"detox": "20.2.1",
"eslint": "7.32.0",
"jest": "29.4.2",
"jest-styled-components": "7.1.1",
"metro-react-native-babel-preset": "0.72.3",
"react-test-renderer": "18.2.0",
"ts-jest": "29.0.5",
"typescript": "4.8.3"
}
}