-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·147 lines (147 loc) · 5.06 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@devlander/higher-order-components",
"version": "0.0.12",
"description": "A comprehensive collection of higher-order components for React and React Native projects, enhancing functionality and development efficiency.",
"main": "dist/umd/index.js",
"module": "dist/esm/index.js",
"types": "typings/index.d.ts",
"type": "commonjs",
"scripts": {
"prebuild": "npm cache clean --force",
"postinstall": "npx prettier --write '**/*.{ts,js,tsx,jsx}'",
"build:index": "node ./external-modules/auto-export.js",
"build:esm": "tsc",
"test": "jest",
"docs": "typedoc --out ./docs ./src",
"format": "prettier --write 'src/**/*.{ts,tsx}'",
"lint": "eslint ./src --ext .ts,.tsx --fix && yarn run format && yarn run typecheck",
"typecheck": "tsc --project tsconfig.json --noEmit --emitDeclarationOnly false",
"build": "npx rimraf ./dist && npx rimraf ./typings && yarn run build:index && yarn build:esm && yarn build:umd",
"build:umd": "yarn run rollup -c",
"timeout": "delay 5",
"push-main": "git add -A && yarn run timeout && git commit -m 'updated build' && yarn run timeout && git push origin main",
"start-publish": "yarn run lint && yarn run build && npm publish",
"prepare": "yarn run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Devlander-Software/higher-order-components.git"
},
"license": "Apache-2.0",
"keywords": [
"react",
"react-native",
"typescript",
"higher-order-components",
"devlander",
"landon johnson",
"hoc",
"react native components",
"component library",
"UI components",
"frontend development",
"mobile development",
"responsive design"
],
"author": "Landon W Johnson",
"bugs": {
"url": "https://github.com/Devlander-Software/higher-order-components/issues"
},
"homepage": "https://github.com/Devlander-Software/higher-order-components#readme",
"files": [
"dist",
"typings"
],
"peerDependenciesMeta": {
"react": {
"optional": false
},
"react-dom": {
"optional": false
},
"react-native": {
"optional": false
},
"react-native-web": {
"optional": false
}
},
"devDependencies": {
"@babel/core": "^7.23.3",
"@babel/plugin-proposal-class-properties": "^7.18.6",
"@babel/plugin-proposal-decorators": "^7.23.0",
"@babel/plugin-transform-class-properties": "^7.22.5",
"@babel/plugin-transform-object-rest-spread": "^7.22.15",
"@babel/plugin-transform-react-jsx": "^7.22.15",
"@babel/plugin-transform-runtime": "^7.22.15",
"@babel/preset-env": "^7.23.3",
"@babel/preset-react": "^7.23.3",
"@babel/preset-typescript": "^7.23.3",
"@babel/runtime": "^7.22.15",
"@devlander/collect-exports-for-bundle": "^1.1.68",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-auto-install": "^3.0.4",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "0.4.3",
"@rollup/plugin-typescript": "^11.1.3",
"@stylexjs/babel-plugin": "^0.7.5",
"@stylexjs/dev-runtime": "^0.7.5",
"@stylexjs/eslint-plugin": "^0.7.5",
"@stylexjs/rollup-plugin": "^0.7.5",
"@swc/core": "^1.3.95",
"@testing-library/react-hooks": "^8.0.1",
"@testing-library/react-native": "^12.4.3",
"@types/jest": "^29.5.6",
"@types/jsdom-global": "^3.0.7",
"@types/lodash": "^4.14.197",
"@types/node": "^20.6.0",
"@types/react": "^18.2.28",
"@types/react-native": "0.72.6",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"babel-jest": "^29.7.0",
"cli-progress": "^3.12.0",
"eslint": "^8.53.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-jest": "^27.6.0",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.1.0",
"eslint-plugin-testing-library": "^6.1.0",
"eslint-plugin-unused-imports": "^3.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"jsdom": "^23.0.1",
"prettier": "^3.0.3",
"prettier-plugin-stylex-key-sort": "^1.0.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-native-web": "0.19.9",
"rollup": "^3.29.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^6.0.2",
"rollup-plugin-generate-git-version": "^1.0.0",
"rollup-plugin-generate-package-json": "^3.2.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-swc-preserve-directives": "^0.5.0",
"stylex": "^0.3.0",
"tslib": "^2.6.2",
"typedoc": "^0.26.5"
},
"dependencies": {
"@devlander/hooks": "^0.0.208",
"@devlander/styled-components-theme": "^1.1.254",
"@devlander/utils": "^0.0.49",
"@stylexjs/stylex": "^0.7.5",
"jsdom-global": "^3.0.2",
"react-test-renderer": "^18.3.1"
}
}