forked from mitsuruog/react-styleguidist-typescript-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "react-styleguidist-typescript-demo",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack && cp src/index.html dist/index.html",
"start": "./node_modules/.bin/webpack-dev-server --port 9000 --open --hot --inline --content-base src",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"engines": {
"node": ">=v8.9.0"
},
"author": "[email protected]",
"license": "MIT",
"dependencies": {
"@types/react": "^16.0.38",
"@types/react-dom": "^16.0.4",
"@types/react-intl": "^2.3.5",
"@types/react-intl-redux": "^0.1.8",
"@types/react-redux": "^5.0.15",
"@types/redux": "^3.6.0",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-intl": "^2.4.0",
"react-intl-redux": "^0.7.0",
"react-redux": "^5.0.7",
"redux": "^3.7.2",
"typesafe-actions": "^1.1.2"
},
"devDependencies": {
"awesome-typescript-loader": "^3.4.1",
"css-loader": "^0.28.10",
"react-docgen-typescript": "^1.2.5",
"react-styleguidist": "^6.2.7",
"source-map-loader": "^0.2.3",
"style-loader": "^0.20.3",
"typescript": "^2.7.2",
"webpack": "^3.11.0",
"webpack-dev-server": "^2.11.2"
}
}