-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 856 Bytes
/
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
{
"name": "web-vitals-react-hook",
"version": "1.0.4",
"description": "react hook using web-vitals",
"main": "dist/index.js",
"scripts": {
"dev": "tsc -w",
"build": "tsc",
"lint:ts": "eslint src --ext .ts,.tsx",
"test": "npm run build && npm run lint:ts",
"preversion": "npm run test"
},
"keywords": [
"react",
"hook",
"webvitals"
],
"author": "nils schoenwald <[email protected]>",
"license": "MIT",
"dependencies": {
"web-vitals": "^2.1.0"
},
"files": [
"dist/*"
],
"peerDependencies": {
"react": "^17.0.0",
"react-dom": "^17.0.0"
},
"devDependencies": {
"@schoenwald/eslint-config-typescript": "5.0.1",
"@types/react": "17.0.13",
"eslint": "7.30.0",
"prettier": "2.3.2",
"react": "^17.0.0",
"react-dom": "^17.0.0",
"typescript": "4.3.5"
}
}