-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.09 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@washingtonpost/storybook-addon-web-vitals",
"version": "0.3.0",
"description": "See how your component fairs according to web vitals",
"repository": {
"type": "git",
"url": "https://github.com/washingtonpost/storybook-addon-web-vitals"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"clean": "rimraf ./dist",
"build": "babel ./src --out-dir ./dist",
"prepublish": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook -p 6006 --no-manager-cache",
"start": "concurrently \"npm run storybook\" \"npm run build -- --watch\"",
"build-storybook": "build-storybook",
"release": "npm run build && auto shipit --base-branch=main",
"next": "npm run build && auto next",
"canary": "npm run build && auto canary --force"
},
"author": "artmsilva",
"license": "MIT",
"main": "dist/preset.js",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"storybook": {
"displayName": "Web Vitals",
"unsupportedFrameworks": [
"react-native"
],
"icon": ""
},
"keywords": [
"storybook-addons",
"web-vitals",
"cls"
],
"devDependencies": {
"@auto-it/all-contributors": "^10.9.1",
"@auto-it/conventional-commits": "^10.9.1",
"@auto-it/first-time-contributor": "^10.9.1",
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@babel/preset-react": "^7.12.5",
"@storybook/addon-actions": "^6.1.10",
"@storybook/addon-essentials": "^6.1.10",
"@storybook/react": "^6.1.10",
"auto": "^10.3.0",
"babel-loader": "^8.1.0",
"concurrently": "^5.3.0",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"rimraf": "^3.0.2"
},
"dependencies": {
"@storybook/addons": "^6.0.0",
"web-vitals": "^2.1.2"
},
"peerDependencies": {
"react": "^16.8.0 || ^17.0.0",
"react-dom": "^16.8.0 || ^17.0.0"
},
"auto": {
"baseBranch": "main",
"plugins": [
"npm",
"conventional-commits"
]
}
}