forked from vvinhas/react-series
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 742 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 742 Bytes
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
{
"name": "miguelmdsdp-learning-react",
"version": "0.0.0",
"description": "Provides a basic structure to follow the v++ channel React series.",
"main": "src/app.js",
"dependencies": {
"babel-core": "^6.22.1",
"babel-loader": "^6.2.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2"
},
"devDependencies": {
"webpack": "^2.2.1",
"webpack-dev-server": "^2.3.0"
},
"scripts": {
"dev": "webpack-dev-server --inline --hot --history-api-fallback --content-base public"
},
"author": "Miduel dos Santos",
"license": "MIT"
}