-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
39 lines (39 loc) · 1.29 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
{
"name": "typescript-react-storybook-boilerplate",
"version": "1.0.0",
"description": "A boilerplate project for using TypeScript 3, React 16 and Storybook together with Webpack 4",
"main": "src/index.tsx",
"repository": "git@github.com:Sly321/typescript-react-storybook-boilerplate.git",
"author": "Sven Liebig <liebigsv@gmail.com>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.1.6",
"@storybook/addon-a11y": "4.0.7",
"@storybook/addon-centered": "4.0.7",
"@storybook/addon-options": "4.0.7",
"@storybook/addon-viewport": "4.0.7",
"@storybook/react": "4.0.7",
"@types/node": "10.12.9",
"@types/react": "16.7.6",
"@types/react-dom": "16.0.9",
"@types/storybook__addon-a11y": "3.3.1",
"@types/storybook__addon-centered": "3.3.1",
"@types/storybook__addon-options": "3.2.2",
"@types/storybook__react": "4.0.0",
"@types/webpack": "4.4.19",
"babel-loader": "^8.0.4",
"ts-loader": "^5.3.0",
"ts-node": "^7.0.1",
"typescript": "^3.1.6",
"webpack": "^4.26.0",
"webpack-cli": "^3.1.2"
},
"dependencies": {
"react": "^16.6.3",
"react-dom": "^16.6.3"
},
"scripts": {
"start:storybook": "start-storybook -p 6006 -c config/storybook",
"build:storybook": "build-storybook -c config/storybook"
}
}