-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.56 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": "react-fluid-carousel",
"description": "A carousel with great defaults",
"version": "0.7.0",
"main": "dist/bundle.cjs.js",
"module": "dist/bundle.js",
"jsnext:main": "dist/bundle.js",
"files": [
"dist"
],
"author": "Pavithra Kodmad",
"repository": "https://github.com/kalcifer/react-fluid-carousel",
"license": "MIT",
"scripts": {
"clean": "rm -rf dist",
"build": "rollup -c",
"prepublishOnly": "npm run clean && npm run build",
"watch": "rollup -cw",
"test": "jest --watch",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook",
"publish-storybook": "build-storybook -c .storybook -o .out"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.4.1",
"react": "^16.4.1",
"react-dom": "^16.4.1",
"react-testing-library": "^4.1.3",
"rollup": "^0.62.0",
"rollup-plugin-babel": "^3.0.7",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-node-resolve": "^3.3.0",
"@storybook/react": "^3.4.8",
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-links": "^3.4.8",
"@storybook/addons": "^3.4.8",
"babel-runtime": "^6.26.0"
},
"dependencies": {
"react-node-resolver": "^2.0.0",
"react-window": "^1.1.1"
},
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
}
}