-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.29 KB
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
{
"name": "reakt-native-toolkit",
"version": "0.22.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/voize-gmbh/reakt-native-toolkit",
"license": "Apache-2.0",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc --skipLibCheck",
"typecheck": "tsc --skipLibCheck",
"lint": "eslint ./src --ext .js,.ts,.tsx",
"format": "prettier --write \"**/*.ts*\"",
"checkformat": "prettier --check \"**/*.ts*\"",
"test": "jest src",
"prepare": "yarn build"
},
"dependencies": {
"lodash": "^4.17.23",
"uuid": "^9.0.1"
},
"devDependencies": {
"@testing-library/react-hooks": "^8.0.1",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.189",
"@types/react": "^18.0.25",
"@types/react-native": "0.69.10",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-plugin-jest": "^27.1.5",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"jest": "^29.3.1",
"prettier": "^2.7.1",
"react": "^18.0.0",
"react-native": "0.69.10",
"react-test-renderer": "^18.2.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
}
}