-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "@aspirity/grapes",
"version": "0.1.2",
"description": "Granular global state hook for react",
"main": "dist/cjs/grapes.js",
"module": "dist/esm/grapes.js",
"types": "dist/dts/grapes.js",
"scripts": {
"prebuild": "rimraf ./dist",
"build": "node ./build.js",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx --format=pretty ./"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aspirity-ru/grapes.git"
},
"keywords": [
"react",
"hooks",
"state"
],
"author": "Denis Zavershinskiy",
"license": "MIT",
"bugs": {
"url": "https://github.com/aspirity-ru/grapes/issues"
},
"homepage": "https://github.com/aspirity-ru/grapes#readme",
"devDependencies": {
"@testing-library/react-hooks": "7.0.1",
"@types/jest": "26.0.24",
"@types/react": "17.0.13",
"@typescript-eslint/eslint-plugin": "4.28.2",
"esbuild": "0.12.15",
"esbuild-jest": "0.5.0",
"eslint": "7.30.0",
"eslint-config-airbnb-typescript": "12.3.1",
"eslint-config-prettier": "8.3.0",
"eslint-formatter-pretty": "4.1.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"eslint-plugin-react-hooks": "4.2.0",
"jest": "27.0.6",
"prettier": "2.3.2",
"react": "^16.9.0 || ^17 || ^18",
"react-test-renderer": "17.0.2",
"rimraf": "3.0.2",
"tiny-glob": "0.2.9",
"typescript": "4.3.5"
},
"peerDependencies": {
"react": "^16.9.0 || ^17 || ^18"
}
}