-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.14 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
{
"name": "tree-select",
"version": "0.2.0",
"description": "A react tree select component",
"main": "build/index.js",
"module": "build/index.es.js",
"files": [
"build"
],
"scripts": {
"build": "rollup -c",
"test": "echo \"Error: no test specified\" && exit 1",
"storybook": "start-storybook",
"build-storybook": "build-storybook"
},
"author": "Jelle De Clercq",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.10.2",
"@fortawesome/fontawesome-free": "^5.13.0",
"@rollup/plugin-commonjs": "^13.0.0",
"@rollup/plugin-node-resolve": "^8.0.1",
"@storybook/addon-actions": "^5.3.19",
"@storybook/addon-links": "^5.3.19",
"@storybook/addons": "^5.3.19",
"@storybook/react": "^5.3.19",
"@types/react": "^16.9.36",
"babel-loader": "^8.1.0",
"babel-preset-react-app": "^9.1.2",
"rollup": "^2.16.1",
"rollup-plugin-peer-deps-external": "^2.2.2",
"rollup-plugin-sass": "^1.2.2",
"rollup-plugin-typescript2": "^0.27.1",
"sass-loader": "^8.0.2",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": ">=16.8.0",
"react-dom": ">=16.8.0"
}
}