-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 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
48
49
50
51
52
{
"name": "@quintoandar/storybook-amplitude",
"version": "0.2.4",
"description": "Storybook Addon for Amplitude",
"scripts": {
"clean": "rimraf dist",
"build": "babel src -d dist",
"build:watch": "npm run build -- --watch",
"format": "prettier --write '**/*.js'",
"test": "jest --coverage",
"test:watch": "npm test -- --watch",
"prepare": "npm run clean && npm run build"
},
"main": "dist/register.js",
"files": [
"dist",
"register.js"
],
"homepage": "https://github.com/quintoandar/storybook-amplitude#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/quintoandar/storybook-amplitude.git"
},
"keywords": [
"addon",
"storybook",
"amplitude"
],
"author": "QuintoAndar",
"license": "MIT",
"dependencies": {
"@storybook/addons": "^5.2.8",
"@storybook/core-events": "^5.2.8",
"amplitude-js": "^5.8.0",
"global": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.7.7",
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"husky": "^4.0.1",
"jest": "^24.9.0",
"prettier": "1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}