-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.93 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
{
"name": "@bit-about/native-portal",
"description": "Powerfull extensible pipe architecture.",
"author": "Gareneye",
"license": "MIT",
"repository": "github:bit-about/native-portal",
"version": "1.0.0",
"type": "module",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"source": "src/index.ts",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.es.js"
}
},
"sideEffects": false,
"files": [
"dist"
],
"peerDependencies": {
"react": ">=16.0.0",
"react-native": ">=0.68.0",
"scheduler": ">=0.19.0"
},
"jest": {
"preset": "react-native"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"test:watch": "jest --watch",
"lint": "eslint --fix src/**",
"format": "prettier src/** --write"
},
"dependencies": {
"@bit-about/context": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.21.0",
"@testing-library/jest-native": "^5.4.2",
"@testing-library/react-native": "^11.5.4",
"@types/jest": "^29.4.0",
"@types/node": "^18.15.0",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"@vitejs/plugin-react": "^3.1.0",
"babel-jest": "^29.5.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-react": "^7.32.2",
"jest": "^29.5.0",
"jsdom": "^21.1.0",
"metro-react-native-babel-preset": "^0.76.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.4",
"rollup-plugin-typescript2": "^0.34.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vite-plugin-eslint": "^1.8.1"
}
}