-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.78 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
54
55
56
57
58
59
60
61
62
{
"name": "react-ts-storybook-storyshots",
"version": "0.1.0",
"description": "Minimalistic React module in TypeScript with Storybook and Storyshots",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "webpack",
"start": "webpack-dev-server",
"storybook": "start-storybook -p 6006",
"build-storybook": "build-storybook -o public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/softspider/react-ts-storybook-storyshots.git"
},
"keywords": [
"react",
"storybook",
"storyshot",
"jest",
"test",
"template"
],
"author": "AlexanderLapygin",
"license": "MIT",
"bugs": {
"url": "https://github.com/softspider/react-ts-storybook-storyshots/issues"
},
"homepage": "https://github.com/softspider/softspiders",
"dependencies": {
"react": "^16.9.0",
"react-dom": "^16.9.0"
},
"devDependencies": {
"@babel/core": "^7.6.0",
"@babel/preset-env": "^7.6.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.6.0",
"@storybook/addon-actions": "^5.2.0",
"@storybook/addon-links": "^5.2.0",
"@storybook/addon-storyshots": "^5.2.0",
"@storybook/addon-viewport": "^5.2.0",
"@storybook/addons": "^5.2.0",
"@storybook/react": "^5.2.0",
"@types/react": "^16.9.2",
"@types/react-dom": "^16.9.0",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babel-plugin-require-context-hook": "^1.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^24.9.0",
"react-docgen-typescript-loader": "^3.2.0",
"react-test-renderer": "^16.9.0",
"ts-loader": "^6.1.0",
"typescript": "^3.6.3",
"webpack": "^4.40.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.1"
}
}