-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
44
45
46
47
48
49
50
51
52
53
54
{
"name": "react101",
"version": "1.0.0",
"description": "Basic tuition tool to define the React.js application",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index.js",
"server": "babel-watch server",
"dev": "nodemon --exec babel-node index.js",
"build": "webpack-dev-server --config webpack.config.js --hot --inline",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git+https://github.com/jmullings/react101.git",
"keywords": [
"React",
"Application",
"Basic",
"Tutional",
"tool."
],
"author": "Jason Mullings",
"license": "MIT",
"bugs": {
"url": "https://github.com/jmullings/react101/issues"
},
"homepage": "https://github.com/jmullings/react101#readme",
"dependencies": {
"@babel/core": "^7.0.0-beta.37",
"@babel/preset-env": "^7.0.0-beta.37",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"body-parser": "^1.18.2",
"compression-webpack-plugin": "^1.1.3",
"es2015": "0.0.0",
"express": "^4.16.2",
"path": "^0.12.7",
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"devDependencies": {
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-react-hmre": "^1.1.1",
"babel-preset-stage-2": "^6.24.1",
"compression-webpack-plugin": "^1.0.1",
"webpack": "^2.7.0",
"webpack-bundle-analyzer": "^2.9.0",
"webpack-dev-middleware": "^1.11.0",
"webpack-dev-server": "^2.6.1",
"webpack-hot-middleware": "^2.18.2"
}
}