-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.8 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.8 KB
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
{
"name": "formation-react",
"version": "1.0.0",
"description": "Ce repo est utilisé dans le cadre de la formation React que je propose.",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run build-server && npm run build-client",
"build-server": "BABEL_ENV=server $(npm bin)/webpack --config ./webpack.server.prod.config.js",
"build-client": "BABEL_ENV=browser-prod $(npm bin)/webpack --config ./webpack.prod.config.js",
"dev": "npm-run-all --parallel dev-server-build dev-server-start dev-client",
"dev-server-build": "BABEL_ENV=server $(npm bin)/webpack --watch --config ./webpack.server.config.js",
"dev-server-start": "cd build && $(npm bin)/nodemon ./server.js --watch ./",
"dev-client": "BABEL_ENV=browser $(npm bin)/webpack-dev-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/YannickDa/formation-react.git"
},
"author": "Yannick Dalbin <yannick@idvive.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/YannickDa/formation-react/issues"
},
"homepage": "https://github.com/YannickDa/formation-react#readme",
"devDependencies": {
"babel-cli": "^6.24.0",
"babel-loader": "^6.4.1",
"babel-preset-env": "^1.3.2",
"babel-preset-react": "^6.23.0",
"nodemon": "^1.11.0",
"npm-run-all": "^4.0.2",
"file-loader": "^0.11.1",
"webpack": "^2.3.3",
"webpack-dev-server": "^2.4.2"
},
"dependencies": {
"koa": "^2.2.0",
"koa-bodyparser": "^4.2.0",
"koa-mount": "^3.0.0",
"koa-router": "^7.1.1",
"koa-static": "^3.0.0",
"react": "^15.4.2",
"react-dom": "^15.4.2",
"react-hot-loader": "^3.0.0-beta.6",
"react-redux": "^5.0.3",
"react-router-dom": "^4.0.0",
"redux": "^3.6.0",
"redux-thunk": "^2.2.0"
}
}