-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
34 lines (34 loc) · 903 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
31
32
33
34
{
"name": "react-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "webpack-dev-server --inline --content-base exercises/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mzabriskie/react-workshop.git"
},
"author": "Matt Zabriskie",
"license": "MIT",
"bugs": {
"url": "https://github.com/mzabriskie/react-workshop/issues"
},
"homepage": "https://github.com/mzabriskie/react-workshop#readme",
"dependencies": {
"axios": "^0.13.1",
"history": "^2.1.2",
"react": "^15.3.0",
"react-dom": "^15.3.0",
"react-router": "^2.6.1"
},
"devDependencies": {
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.11.1",
"webpack": "^1.13.1",
"webpack-dev-server": "^1.14.1"
}
}