-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 854 Bytes
/
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
{
"name": "minimal-semantic-react-storybook",
"version": "1.0.0",
"main": "src/index.jsx",
"author": "Jonathan H (jhadida.pub@gmail.com)",
"license": "MIT",
"scripts": {
"serve": "webpack-dev-server --mode development",
"build": "webpack --mode development",
"storybook": "start-storybook -p 9001 -c .storybook",
"export-storybook": "build-storybook -c .storybook -o storybook"
},
"dependencies": {
"jquery": "^3.3.1",
"lodash": "^4.17.10",
"react": "^16.4.0",
"react-dom": "^16.4.0",
"semantic-ui-react": "^0.80.2"
},
"devDependencies": {
"@storybook/react": "^3.4.6",
"babel-core": "^6.26.3",
"babel-loader": "^7.1.4",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"webpack": "^4.9.1",
"webpack-cli": "^2.1.4",
"webpack-dev-server": "^3.1.4"
}
}