generated from WrathChaos/react-native-typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 2.86 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": "react-native-language-select",
"version": "1.1.1",
"description": "Useful and customizable language picker",
"main": "./build/dist/LanguagePicker.js",
"repository": "[email protected]:sevvaleygul0/react-native-language-picker.git",
"author": "Sevval Eygul <[email protected]>",
"license": "MIT",
"bugs": "https://github.com/sevvaleygul0/react-native-language-picker/issues",
"keywords": [
"Sevval Eygul",
"Sevval Eygul",
"sevval",
"Sevval",
"react",
"react-native",
"javascript",
"ui-lib",
"rn",
"language",
"picker",
"language-select",
"select",
"language-picker"
],
"devDependencies": {
"@babel/core": "^7.20.0",
"@babel/runtime": "^7.20.0",
"@babel/preset-env": "^7.20.0",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/react-native": "0.70.7",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"@tsconfig/react-native": "^2.0.2",
"@types/react": "^18.0.24",
"babel-plugin-module-resolver": "^4.1.0",
"eslint": "^8.33.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-flowtype": "^8.0.3",
"eslint-plugin-ft-flow": "2.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jest": "27.2.3",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-promise": "6.1.1",
"eslint-plugin-react": "7.30.1",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-react-native": "4.0.0",
"eslint-plugin-unused-imports": "^3.0.0",
"husky": "^8.0.0",
"metro-react-native-babel-preset": "^0.73.7",
"prettier": "^2.7.1",
"react-native-codegen": "0.71.5",
"typescript": "^5.1.6"
},
"scripts": {
"android": "npx react-native run-android",
"ios": "npx react-native run-ios",
"start": "react-native start --reset-cache",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier && npm run husky:lint",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"husky:prettier": "npx husky set .husky/pre-commit 'npm run prettier'",
"husky:lint": "npx husky add .husky/pre-commit 'npm run lint'",
"clean-up": "rm -rf .git && rm -rf ./assets && git init && npm run husky:setup",
"clean:android": "cd android && ./gradlew clean",
"debug:android": "cd android && ./gradlew assembleDebug",
"release:android": "cd android && ./gradlew assembleRelease",
"release:play": "cd android && ./gradlew bundleRelease",
"test:apk": "react-native run-android --variant=release",
"prettier": "cd src && npx prettier --write . && git add .",
"prepare": "husky install",
"test": "jest",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx"
},
"dependencies": {
"@freakycoder/react-native-bounceable": "^1.0.3"
}
}