-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.61 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
{
"name": "starter_app",
"version": "1.0.0",
"main": "node_modules/expo/AppEntry.js",
"private": true,
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"build:tailwind": "tailwindcss --input style.css --output tailwind.css --no-autoprefixer && tailwind-rn",
"dev:tailwind": "concurrently \"tailwindcss --input style.css --output tailwind.css --no-autoprefixer --watch\" \"tailwind-rn --watch\"",
"lint": "eslint './src/**/*{.ts,.tsx}' --ignore-path .gitignore",
"lint:fix": "yarn run lint --fix",
"prepare": "husky install"
},
"dependencies": {
"concurrently": "^7.6.0",
"expo": "~48.0.4",
"expo-localization": "~14.1.1",
"expo-status-bar": "~1.4.4",
"i18n-js": "^4.2.3",
"react": "18.2.0",
"react-native": "0.71.3",
"react-native-svg": "13.4.0",
"react-native-svg-transformer": "^1.0.0",
"tailwind-rn": "^4.2.0",
"tailwindcss": "^3.2.7"
},
"devDependencies": {
"@babel/core": "^7.20.0",
"@expo/metro-config": "^0.7.1",
"@expo/webpack-config": "^18.0.1",
"@svgr/webpack": "^6.5.1",
"@types/i18n-js": "^3.8.4",
"@types/react": "~18.0.27",
"@types/react-native": "^0.71.3",
"babel-plugin-module-resolver": "^5.0.0",
"eslint-config-react-native-wcandillon": "^3.9.0",
"husky": ">=7",
"lint-staged": ">=10",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"typescript": "^4.9.4"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{css,json,ts,tsx}": "prettier --write"
}
}