This repository has been archived by the owner on Dec 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.73 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-comments",
"version": "0.2.1",
"description": "storybook and firebase comments app",
"main": "lib/index.js",
"license": "MIT",
"repository": "[email protected]:stk-dmitry/storybook-addon-comments.git",
"author": "Dmitry Strelkov <[email protected]>",
"scripts": {
"build": "rm -rf lib && yarn build-cjs && yarn build-umd && yarn build-esm",
"build-cjs": "./node_modules/.bin/rollup src/index.js --config --file lib/index.js",
"build-umd": "./node_modules/.bin/rollup src/index.js --config --format umd --file lib/index.umd.js",
"build-esm": "./node_modules/.bin/rollup src/index.js --config --format esm --file lib/index.esm.js",
"lint": "./node_modules/.bin/eslint ./src --ext=js"
},
"keywords": [
"react",
"storybook",
"firebase"
],
"husky": {
"hooks": {
"pre-commit": "yarn lint"
}
},
"dependencies": {
"@storybook/addons": "^5.0.0",
"firebase": "^7.5.0",
"query-string": "^6.2.0",
"react": "^16.5.2",
"styled-components": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"babel-plugin-rewire-exports": "^2.0.0",
"eslint": "^6.0.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"husky": "^4.0.2",
"rollup": "^2.0.0",
"rollup-plugin-babel": "^4.0.3",
"rollup-plugin-commonjs": "^10.0.0",
"rollup-plugin-terser": "^6.0.0"
}
}