-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.98 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
55
56
57
58
59
60
61
{
"name": "react-starter-kit",
"version": "1.0.0",
"description": "open source react application",
"main": "index.js",
"scripts": {
"heroku-postbuild": "webpack --config webpack.server.js && webpack --config webpack.client.js",
"build": "webpack --config webpack.server.js && webpack --config webpack.client.js",
"serve": "node build/bundle.js",
"dev": "npm-run-all --parallel dev:*",
"dev:build-server": "webpack --config webpack.server.js --watch",
"dev:build-client": "webpack --config webpack.client.js --watch",
"dev:server": "nodemon --watch build --exec node build/bundle.js"
},
"author": "Ashley Bibizadeh, Meriem MEMMICHE",
"license": "MIT",
"dependencies": {
"axios": "0.16.2",
"@babel/core": "^7.0.0-beta.40",
"@babel/cli": "^7.0.0-beta.40",
"babel-loader": "^8.0.0-beta.0",
"babel-plugin-lodash": "^3.3.2",
"babel-plugin-react-transform": "^3.0.0",
"@babel/preset-react": "^7.0.0-beta.40",
"body-parser": "^1.18.3",
"classnames": "^2.2.5",
"compression": "1.7.0",
"concurrently": "3.5.0",
"copy-webpack-plugin": "4.5.1",
"express": "4.15.4",
"express-http-proxy": "1.0.6",
"lodash": "4.17.4",
"nodemailer": "^4.6.4",
"nodemailer-express-handlebars": "^3.0.0",
"nodemon": "1.12.0",
"npm-run-all": "4.1.1",
"react": "16.0.0",
"react-addons-css-transition-group": "^15.6.2",
"react-dom": "16.0.0",
"react-helmet": "5.2.0",
"react-redux": "5.0.6",
"react-router-config": "1.0.0-beta.4",
"react-router-dom": "4.2.2",
"react-slick": "^0.22.2",
"redux": "3.7.2",
"redux-form": "^7.3.0",
"redux-thunk": "2.2.0",
"serialize-javascript": "1.4.0",
"webpack": "3.5.6",
"webpack-dev-server": "2.8.2",
"webpack-merge": "4.1.0",
"webpack-node-externals": "1.6.0"
},
"devDependencies": {
"css-loader": "^0.28.7",
"extract-loader": "^1.0.1",
"file-loader": "^0.11.2",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.6"
}
}