-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
65 lines (65 loc) · 2.07 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
{
"name": "clean-arch-react-native-starter",
"version": "1.1.0",
"main": "./src/main/index.ts",
"description": "Clean architecture starter for Next.js with TypeScript. All the tools you need to build your next project.",
"repository": "https://github.com/yazaldefilimonepinto/clean-arch-react-native-starter",
"author": {
"name": "Yazalde Filimone",
"email": "yazaldefilimon@gmail.com",
"url": "https://yazaldefilimone.vercel.app"
},
"homepage": "https://github.com/yazaldefilimonepinto/clean-arch-react-native-starter",
"license": "MIT",
"keywords": [
"react",
"react-native",
"react native boilerplate",
"react native starter",
"clean architecture react native",
"tailwindcss in react-native"
],
"scripts": {
"start": "expo start --dev-client",
"test": "jest --no-cache",
"test:watch": "jest --no-cache --watchAll",
"test:staged": "jest --no-cache --findRelatedTests",
"test:ci": "jest --no-cache --coverage",
"android": "expo run:android",
"ios": "expo run:ios",
"web": "expo start --web"
},
"dependencies": {
"@expo/webpack-config": "^18.0.1",
"@react-navigation/native": "^6.1.1",
"@react-navigation/native-stack": "^6.9.7",
"expo": "~47.0.9",
"expo-splash-screen": "~0.17.5",
"expo-status-bar": "~1.4.2",
"nativewind": "^2.0.11",
"react": "18.1.0",
"react-dom": "18.1.0",
"react-native": "0.70.5",
"react-native-safe-area-context": "4.4.1",
"react-native-screens": "~3.18.0",
"react-native-web": "~0.18.9"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@testing-library/jest-native": "^5.3.3",
"@testing-library/react-native": "^11.5.0",
"@types/jest": "^29.2.4",
"@types/node": "^18.11.17",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"babel-plugin-module-resolver": "^4.1.0",
"jest": "^29.3.1",
"react-test-renderer": "^18.2.0",
"tailwindcss": "^3.2.4",
"ts-node": "^10.9.1",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.9.4"
},
"private": false
}