-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.23 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.23 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
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
{
"name": "@reusejs/react-native-text-inputs",
"version": "0.0.7",
"description": "A library which works as a base to build react components and push to npm",
"main": "build/src/index.js",
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/reusejs/react-native-text-inputs.git"
},
"bugs": {
"url": "https://github.com/reusejs/react-native-text-inputs/issues"
},
"homepage": "https://github.com/reusejs/react-native-text-inputs",
"author": "Rajiv Seelam",
"license": "MIT",
"scripts": {
"prepublishOnly": "npm run build",
"release": "gh release create",
"bump": "npm version patch",
"build": "NODE_ENV=production rollup -c",
"serve": "NODE_ENV=production rollup -c -w",
"android": "react-native run-android",
"ios": "react-native run-ios",
"start": "react-native start",
"test": "jest",
"lint": "eslint .",
"storybook": "start-storybook -p 7007",
"build-storybook": "build-storybook"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-native": "^0.66.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-proposal-export-default-from": "^7.16.0",
"@babel/plugin-syntax-export-default-from": "^7.16.0",
"@babel/preset-env": "^7.15.8",
"@babel/preset-flow": "^7.16.0",
"@babel/preset-react": "^7.14.5",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-node-resolve": "^13.0.6",
"@storybook/addon-actions": "^5.3",
"@storybook/addon-knobs": "^5.3",
"@storybook/addon-links": "^5.3",
"@storybook/addon-ondevice-actions": "^5.3.23",
"@storybook/addon-ondevice-knobs": "^5.3.25",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.3",
"eslint": "7.14.0",
"jest": "^26.6.3",
"metro-react-native-babel-preset": "^0.66.2",
"react": ">=16.8.0",
"react-dom": ">=16.8.0",
"react-native": "^0.66.1",
"react-test-renderer": "17.0.2",
"rollup": "^2.58.3",
"rollup-plugin-commonjs": "^10.1.0"
},
"jest": {
"preset": "react-native"
}
}