This repository has been archived by the owner on May 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "@recats/cdeebee",
"version": "2.2.5",
"description": "React Redux data-logic library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "[email protected]:recats/cdeebee.git",
"author": "recats",
"license": "MIT",
"scripts": {
"build": "rm -rf lib && yarn build-cjs && yarn build-umd && yarn build-esm",
"build-cjs": "./node_modules/.bin/rollup src/index.ts --config --file lib/index.js",
"build-umd": "./node_modules/.bin/rollup src/index.ts --config --format umd --file lib/index.umd.js",
"build-esm": "./node_modules/.bin/rollup src/index.ts --config --format esm --file lib/index.esm.js",
"lint": "./node_modules/.bin/tslint -p . ./src/*.ts"
},
"keywords": [
"react",
"redux",
"fetch",
"data",
"server"
],
"devDependencies": {
"@babel/core": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.5",
"@babel/plugin-proposal-object-rest-spread": "^7.16.5",
"@babel/plugin-transform-runtime": "^7.16.5",
"@babel/preset-env": "^7.16.5",
"@types/lodash": "^4.14.178",
"@types/node-fetch": "^2.5.8",
"@types/ramda": "^0.27.62",
"@types/whatwg-fetch": "^0.0.33",
"babel-eslint": "^10.1.0",
"babel-plugin-lodash": "^3.3.4",
"babel-plugin-ramda": "^2.0.0",
"babel-plugin-rewire-exports": "^2.3.0",
"redux": "^4.1.2",
"rollup": "^2.62.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.1",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"peerDependencies": {
"ramda": ">=0.27.1",
"redux": ">=4.0.5"
},
"dependencies": {
"abortcontroller-polyfill": "^1.7.3",
"node-fetch": "^2.6.1",
"whatwg-fetch": "^3.6.2"
}
}