-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.37 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
{
"name": "use-reducer-thunk",
"version": "1.1.0",
"description": "Thunk like action creator support for react's useReducer hook",
"main": "./build/index.js",
"types": "./build/index.d.ts",
"peerDependencies": {
"react": "*"
},
"files": [
"/build",
"/src"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack --watch",
"build": "webpack && mv src/index.d.ts build/index.d.ts",
"format": "prettier --write src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/intergalacticspacehighway/use-reducer-thunk.git"
},
"keywords": [
"thunk",
"react-hooks",
"useReducer"
],
"author": "Nishan B <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/intergalacticspacehighway/use-reducer-thunk/issues"
},
"homepage": "https://github.com/intergalacticspacehighway/use-reducer-thunk#readme",
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@types/node": "^18.7.18",
"@types/react": "16.8",
"babel-loader": "^8.0.5",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-react-jsx": "^6.24.1",
"prettier": "^2.7.1",
"ts-loader": "^8.4.0",
"typescript": "^4.8.3",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}