-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
69 lines (69 loc) · 1.79 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
{
"name": "react-native-translator",
"title": "React Native Translator",
"version": "1.2.0",
"description": "Free translate component & hook",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"lint": "eslint src --fix",
"test": "jest --watch",
"lint:ci": "eslint src",
"test:ci": "jest --coverage",
"check-availability": "ts-node src/check-availability.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/koreanthinker/react-native-translator"
},
"keywords": [
"react-native-translator",
"react-native-translate",
"react-native",
"react native",
"translate",
"translator"
],
"author": {
"name": "KoreanThinker",
"email": "[email protected]"
},
"license": "MIT",
"licenseFilename": "LICENSE",
"readmeFilename": "README.md",
"peerDependencies": {
"react-native-webview": "*"
},
"devDependencies": {
"@babel/core": "^7.24.4",
"@babel/preset-env": "^7.24.4",
"@babel/runtime": "^7.24.4",
"@react-native/eslint-config": "^0.74.81",
"@react-native/typescript-config": "^0.74.81",
"@testing-library/react-native": "^12.4.5",
"@tsconfig/react-native": "^3.0.5",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.0",
"@types/react": "^18.3.1",
"eslint": "^8.19.0",
"eslint-plugin-testing-library": "^6.2.2",
"jest": "^29.7.0",
"metro-react-native-babel-preset": "^0.77.0",
"prettier": "2.8.8",
"puppeteer": "^22.7.1",
"react": "18.3.1",
"react-native": "0.74.0",
"react-native-webview": "^11.26.1",
"react-test-renderer": "^18.3.1",
"ts-node": "^10.9.2",
"typescript": "5.1.5"
},
"dependencies": {
"lodash": "^4.17.21"
}
}