-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.69 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
{
"name": "react-inject-reducer",
"version": "1.0.14",
"description": "Inject Redux Reducer Asynchronously",
"main": "lib/index.js",
"files": [
"lib"
],
"keywords": [
"redux",
"reducer",
"state",
"asynchronous",
"dynamic"
],
"types": "./index.d.ts",
"scripts": {
"lint": "eslint \"src/**/*.{ts,tsx}\"",
"lint:fix": "yarn lint --fix",
"build-ts": "tsc --emitDeclarationOnly",
"build-babel": "npx babel src/ -d lib --extensions .ts,.tsx",
"build": "npm run build-babel & npm run build-ts",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seanjyjy/React-Inject-Reducer.git"
},
"author": "Sean Lum",
"license": "MIT",
"bugs": {
"url": "https://github.com/seanjyjy/React-Inject-Reducer/issues"
},
"homepage": "https://github.com/seanjyjy/React-Inject-Reducer#readme",
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"@babel/preset-typescript": "^7.16.0",
"@types/react": "^17.0.37",
"@types/react-redux": "^7.1.20",
"@typescript-eslint/eslint-plugin": "^5.5.0",
"@typescript-eslint/parser": "^5.7.0",
"babel-loader": "^8.2.3",
"eslint": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.27.1",
"eslint-plugin-react-hooks": "^4.3.0",
"husky": "^7.0.4",
"lint-staged": "^12.1.2",
"prettier": "^2.5.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
},
"dependencies": {},
"peerDependencies": {
"react": "^17.0.2",
"react-redux": "^7.2.6"
},
"publishConfig": {
"access": "public"
}
}