-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@artcom/async-task-hook",
"version": "1.2.0",
"description": "A react hook to perform async tasks.",
"files": [
"lib/"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/artcom/async-task-hook.git"
},
"license": "MIT",
"keywords": [
"react",
"hook",
"async",
"task"
],
"scripts": {
"format": "prettier --write src test",
"lint": "eslint src --fix",
"test": "jest",
"build": "babel src --out-dir lib --source-maps",
"prepublishOnly": "npm run lint && npm run test && npm run build"
},
"peerDependencies": {
"react": "^17.0.0 || ^18.0.0"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-react": "^7.16.7",
"@testing-library/react": "^13.0.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^26.1.3",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.5.1",
"prettier": "^2.6.2",
"react": "^18.0.0",
"react-dom": "^18.0.0"
}
}