-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.62 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
{
"name": "@wellyes/redux-kit",
"version": "1.2.7",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"description": "Redux kit - makes life easer.",
"keywords": [
"redux"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rollup -c",
"build-watch": "rollup -c -w",
"example": "cd examples && yarn start",
"lint": "eslint ./src --ext tsx,ts",
"lint:fix": "eslint ./src --ext tsx,ts --fix",
"lint:example": "cd example && yarn run lint",
"lint:example:fix": "cd example && yarn run lint:fix"
},
"repository": {
"type": "git",
"url": "[email protected]:Aiscom-LLC/redux-kit.git"
},
"author": "",
"license": "MIT",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/es6-promise": "^3.3.0",
"@types/form-data": "^2.5.0",
"@types/node": "^14.14.0",
"@typescript-eslint/eslint-plugin": "^2.0.0",
"@typescript-eslint/parser": "^4.5.0",
"eslint": "^6.2.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-react": "^7.14.3",
"form-data": "^3.0.0",
"prettier": "^1.18.2",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"rollup": "^2.32.0",
"rollup-plugin-typescript2": "^0.28.0",
"tslint-react": "^4.1.0",
"typescript": "^4.0.3",
"typescript-fsa": "^3.0.0"
},
"peerDependencies": {
"form-data": "^3.0.0",
"redux": "^4.0.5",
"redux-devtools-extension": "^2.13.8",
"redux-thunk": "^2.3.0",
"typescript-fsa": "^3.0.0"
},
"files": [
"dist"
],
"dependencies": {}
}