-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.42 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
{
"name": "storybook-addon-matomo",
"version": "1.0.2",
"description": "Storybook addon for Matomo Analytics",
"author": "Alex Nicholls (https://github.com/anicholls)",
"license": "MIT",
"keywords": [
"addon",
"storybook",
"matomo"
],
"storybook": {
"displayName": "Matomo",
"icon": "https://static.matomo.org/wp-content/uploads/2018/11/DefaultIcon.png"
},
"main": "dist/preset.js",
"files": [
"dist/**/*",
"README.md",
"*.js"
],
"homepage": "https://github.com/anicholls/storybook-addon-matomo",
"bugs": {
"url": "https://github.com/anicholls/storybook-addon-matomo/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/anicholls/storybook-addon-matomo.git"
},
"dependencies": {
"@datapunt/matomo-tracker-js": "^0.4.0",
"@storybook/addons": "6.1.3",
"@storybook/core-events": "6.1.3",
"react": "^17.0.1",
"react-dom": "^17.0.1"
},
"devDependencies": {
"@babel/cli": "^7.13.10",
"@babel/core": "^7.13.10",
"@babel/preset-env": "^7.13.10",
"@babel/preset-react": "^7.12.13",
"@storybook/addon-actions": "^6.1.21",
"@storybook/addon-essentials": "^6.1.21",
"@storybook/addon-links": "^6.1.21",
"@storybook/react": "^6.1.21",
"babel-loader": "^8.2.2"
},
"scripts": {
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"build": "babel ./src --out-dir ./dist"
}
}