-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.prod.json
More file actions
93 lines (91 loc) · 2.88 KB
/
package.prod.json
File metadata and controls
93 lines (91 loc) · 2.88 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@digital-art-dealers/react-native-component-lib",
"version": "1.0.13",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"files": [
"dist",
"package.json",
"README.md"
],
"title": "React Native Component Lib",
"scripts": {
"prettier-format": "prettier --config .prettierrc.js 'src/**/*.js' --write",
"build": "rm -rf /dist && npm run build:esm && npm run build:cjs",
"build:esm": "tsc",
"build:cjs": "tsc --module CommonJS --outDir dist/cjs",
"change:package:prod": "bash/change-package-prod.sh",
"change:package:dev": "bash/change-package-dev.sh"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"prettier --write",
"eslint --fix"
]
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/runtime": "^7.12.5",
"@react-native-community/eslint-config": "^2.0.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"@rollup/plugin-typescript": "^8.5.0",
"@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.26",
"@storybook/react-native": "^5.3.25",
"@storybook/react-native-server": "^5.3.23",
"@tsconfig/recommended": "^1.0.1",
"@types/react": "~18.0.14",
"@types/react-native": "~0.69.1",
"babel-jest": "^28.1.3",
"babel-loader": "^8.2.5",
"detox": "^19.7.1",
"eslint": "^8.23.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-detox": "^1.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.30.1",
"eslint-plugin-react-hooks": "^4.3.0",
"metro-react-native-babel-preset": "^0.70.3",
"prettier": "^2.7.1",
"react-native-storybook-loader": "^2.0.5",
"react-test-renderer": "18.0.0",
"regenerator-runtime": "^0.13.9",
"rollup": "^2.79.1",
"rollup-plugin-dts": "^4.2.2",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-terser": "^7.0.2",
"tailwindcss": "^3.1.8",
"typescript": "~4.3.5"
},
"description": "This is the repo for a TailWind (NativeWind) react native component library that aims and improving the speed at which mobile apps are made.",
"repository": {
"type": "git",
"url": "git+https://github.com/daboigbae/react-native-component-lib.git"
},
"keywords": [
"react-native",
"tailwindcss",
"component library",
"typescript"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/daboigbae/react-native-component-lib/issues"
},
"homepage": "https://github.com/daboigbae/react-native-component-lib#readme",
"peerDependencies": {
"@react-native-async-storage/async-storage": "~1.17.3",
"nativewind": "^2.0.10",
"react": "18.0.0",
"react-dom": "18.0.0",
"react-native": "0.69.5",
"react-native-web": "~0.18.7"
}
}