-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.08 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
{
"name": "use-react-saga",
"version": "0.0.10",
"description": "use-react-saga",
"repository": "github:therealparmesh/use-react-saga",
"license": "MIT",
"author": "Parmesh Krishen",
"main": "dist/cjs",
"module": "dist/esm",
"types": "types.d.ts",
"scripts": {
"build": "npm run build:main & npm run build:module",
"build:main": "esbuild src/*.js --outdir=dist/cjs --format=cjs --target=es6 --sourcemap",
"build:module": "esbuild src/*.js --outdir=dist/esm --format=esm --target=es6 --sourcemap",
"precommit": "pretty-quick --staged",
"prepare": "pro-commit",
"prepublishOnly": "npm run build",
"pro-commit:task": "npm run precommit",
"release": "standard-version"
},
"prettier": {
"singleQuote": true,
"trailingComma": "all"
},
"devDependencies": {
"esbuild": "^0.14.10",
"prettier": "^2.0.2",
"pretty-quick": "^3.0.0",
"pro-commit": "^1.2.1",
"react": "^17.0.2",
"redux-saga": "^1.1.3",
"standard-version": "^9.0.0"
},
"peerDependencies": {
"react": ">=16.8.0",
"redux-saga": ">=1.0.0"
}
}