-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.9 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.9 KB
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
64
65
{
"name": "@stefanoruth/fetch-hooks",
"version": "0.1.4",
"license": "Apache-2.0",
"private": false,
"author": "Stefano Ruth <stefano6262@gmail.com>",
"main": "dist/client.js",
"types": "dist/client/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/stefanoruth/fetch-hooks.git"
},
"scripts": {
"test": "jest",
"clean": "rm -rf dist/",
"test:coverage": "jest --coverage",
"build": "rollup -c rollup.config.ts",
"dev": "rollup -c rollup.config.ts --watch",
"example": "concurrently --kill-others \"rollup -c rollup.config.ts --watch\" \"cd ./example && yarn dev\" \"cd ./example && yarn start\""
},
"peerDependencies": {
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"dependencies": {
"isomorphic-fetch": "^3.0.0",
"query-string": "^7.0.0",
"tiny-lru": "^7.0.6"
},
"files": [
"dist",
"server.js",
"server.d.ts"
],
"devDependencies": {
"@types/isomorphic-fetch": "^0.0.35",
"@types/jest": "^26.0.22",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"concurrently": "^6.0.2",
"jest": "^26.6.3",
"jest-fetch-mock": "^3.0.3",
"prettier": "^2.2.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"rollup": "^2.45.2",
"rollup-plugin-bundle-size": "^1.0.3",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.30.0",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"prettier": {
"semi": false,
"useTabs": false,
"tabWidth": 4,
"singleQuote": true,
"trailingComma": "es5",
"proseWrap": "always",
"jsxBracketSameLine": true,
"bracketSpacing": true,
"arrowParens": "avoid",
"printWidth": 120
}
}