forked from grvcoelho/react-voice-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "react-voice-components",
"version": "1.0.0",
"description": "Set of React components that use the Web Speech API to bring voice experience to React applications",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/grvcoelho/react-voice-components.git"
},
"keywords": [
"react",
"voice",
"components",
"web speech api"
],
"author": "Guilherme Rv Coelho <@grvcoelho>",
"license": "MIT",
"homepage": "https://github.com/grvcoelho/react-voice-components",
"devDependencies": {
"@kadira/storybook": "^2.34.0",
"babel-core": "^6.20.0",
"babel-loader": "^6.2.9",
"babel-plugin-transform-react-jsx": "^6.8.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"gh-pages": "^0.12.0",
"react-dom": "^15.4.1",
"webpack": "2.1.0-beta.25",
"webpack-dev-server": "2.1.0-beta.10"
},
"dependencies": {
"react": "^15.4.1"
},
"scripts": {
"start": "webpack-dev-server --port 3000",
"build": "webpack -p",
"deploy": "gh-pages -d storybook-static",
"predeploy": "npm run storybook-static",
"storybook": "start-storybook -p 6006",
"storybook-static": "build-storybook"
}
}