-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.77 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
{
"name": "just-storage-hooks",
"version": "0.3.1",
"description": "Some storage hooks",
"main": "build/storage.js",
"types": "build/storage.d.ts",
"scripts": {
"prebuild": "rimraf ./build",
"build": "tsc",
"postbuild": "node ./postbuild",
"lint": "eslint . --ext .ts,.tsx",
"test": "jest --watch",
"test:ci": "jest",
"test:coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/smujmaiku/just-storage-hooks.git"
},
"author": "Michael Szmadzinski",
"license": "MIT",
"bugs": {
"url": "https://github.com/smujmaiku/just-storage-hooks/issues"
},
"homepage": "https://github.com/smujmaiku/just-storage-hooks#readme",
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0",
"react": "^17.0.0 || ^18.0.0",
"react-dom": "^17.0.0 || ^18.0.0"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.9.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.2",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-loader": "^8.2.5",
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-typescript": "^16.1.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"gh-pages": "^4.0.0",
"jest": "^27.4.7",
"jest-expect-json": "^0.1.1",
"jest-mock": "^27.5.1",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rimraf": "^3.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.5"
}
}