-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 2.66 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
{
"name": "world-of-gaming",
"version": "1.0.0",
"private": true,
"scripts": {
"android": "react-native run-android && yarn dev:tailwind",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"build": "yarn build:tailwind && npx react-native run-android --variant=release",
"build:tailwind": "tailwindcss --input input.css --output tailwind.css --no-autoprefixer && tailwind-rn",
"dev:tailwind": "concurrently \"tailwindcss --input input.css --output tailwind.css --no-autoprefixer --watch\" \"tailwind-rn --watch\"",
"gen": "graphql-codegen --require dotenv/config",
"clean": "cd android &&./gradlew clean"
},
"dependencies": {
"@apollo/client": "^3.5.10",
"@react-navigation/native": "^6.0.8",
"@react-navigation/native-stack": "^6.5.2",
"dayjs": "^1.11.0",
"graphql": "^16.3.0",
"react": "17.0.2",
"react-content-loader": "^6.2.0",
"react-native": "0.68.0",
"react-native-circular-progress-indicator": "^3.2.0",
"react-native-dotenv": "^3.3.1",
"react-native-reanimated": "^2.7.0",
"react-native-safe-area-context": "^4.2.2",
"react-native-screens": "^3.13.1",
"react-native-shadow-2": "^6.0.3",
"react-native-svg": "^12.3.0",
"react-native-vector-icons": "^9.1.0",
"tailwind-rn": "^4.2.0"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@graphql-codegen/cli": "^2.6.2",
"@graphql-codegen/typescript": "^2.4.8",
"@graphql-codegen/typescript-operations": "^2.3.5",
"@graphql-codegen/typescript-react-apollo": "^3.2.11",
"@react-native-community/eslint-config": "^2.0.0",
"@types/jest": "^26.0.23",
"@types/react-native": "^0.67.3",
"@types/react-native-vector-icons": "^6.4.10",
"@types/react-test-renderer": "^17.0.1",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-jest": "^26.6.3",
"babel-plugin-inline-import": "^3.0.0",
"concurrently": "^7.0.0",
"dotenv": "^16.0.0",
"eslint": "^7.32.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.67.0",
"postcss": "^8.4.12",
"prettier": "^2.6.0",
"prettier-plugin-organize-imports": "^2.3.4",
"prettier-plugin-tailwindcss": "git+https://github.com/0-don/prettier-plugin-tailwindcss.git",
"react-test-renderer": "17.0.2",
"tailwindcss": "^3.0.23",
"typescript": "^4.4.4"
},
"resolutions": {
"@types/react": "^17"
},
"jest": {
"preset": "react-native",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
}
}