forked from vercel/swr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "@zeit/swr",
"version": "0.1.1",
"description": "React Hooks library for remote data fetching",
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"files": [
"dist/src/**"
],
"repository": "zeit/swr",
"homepage": "https://swr.now.sh",
"license": "MIT",
"scripts": {
"dev": "now dev",
"build": "tsc",
"watch": "tsc --watch",
"lint": "tsc && eslint 'src/**/*.{ts,tsx}' && prettier --check 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint '{src,test}/**/*.{ts,tsx}' --fix && prettier --write '{src,test}/**/*.{ts,tsx}'",
"test": "jest"
},
"devDependencies": {
"@testing-library/react": "9.3.0",
"@types/jest": "24.0.20",
"@types/node": "11.12.0",
"@types/react": "16.9.11",
"@types/react-dom": "16.9.3",
"@typescript-eslint/eslint-plugin": "2.5.0",
"@typescript-eslint/parser": "2.5.0",
"eslint": "6.6.0",
"eslint-config-prettier": "6.5.0",
"jest": "24.9.0",
"prettier": "1.18.2",
"react": "16.11.0",
"react-dom": "16.11.0",
"ts-jest": "24.1.0",
"typescript": "3.6.4"
},
"dependencies": {
"deep-equal": "1.1.0",
"lodash.throttle": "4.1.1",
"ms": "2.1.2"
},
"peerDependencies": {
"react": "16.11.0",
"react-dom": "16.11.0"
}
}