forked from VicDevelopers/react-workshop-starter-repo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 868 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": "react-intro-workshop",
"private": "true",
"version": "1.0.0",
"description": "Workspace for the Intro to React.js workshop",
"scripts": {
"start": "$(npm root)/.bin/webpack-dev-server --progress --inline --hot",
"shrinkwrap": "npm shrinkwrap --dev"
},
"author": "Dan Abramov <[email protected]> (http://github.com/gaearon)",
"license": "CC0-1.0",
"devDependencies": {
"babel-core": "6.4.5",
"babel-loader": "6.2.1",
"babel-preset-es2015": "6.3.13",
"babel-preset-react": "6.3.13",
"babel-preset-react-hmre": "1.0.1",
"css-loader": "0.23.1",
"eventsource-polyfill": "0.9.6",
"style-loader": "0.13.0",
"webpack": "1.12.12",
"webpack-dev-server": "1.14.1"
},
"dependencies": {
"classnames": "2.2.3",
"normalize.css": "3.0.3",
"react": "0.14.6",
"react-dom": "0.14.6"
}
}