-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.68 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
{
"name": "easy-meal",
"sideEffects": false,
"version": "1.0.0",
"private": true,
"author": "Théo LAVAUX",
"license": "MIT",
"scripts": {
"dev-server": "webpack-dev-server --mode development --config webpack.dev.js ./src/app.js --output ./dist/bundle.js",
"build": "webpack --mode production --config webpack.prod.js ./src/app.js --output ./dist/bundle.js",
"start": "node server/server.js",
"heroku-postbuild": "yarn run build"
},
"dependencies": {
"@babel/core": "^7.1.5",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"axios": "^0.18.0",
"babel-cli": "^6.26.0",
"babel-loader": "^8.0.4",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "7.0.0-beta.3",
"clean-webpack-plugin": "^1.0.0",
"css-loader": "^1.0.1",
"express": "^4.16.4",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.4.5",
"moment": "^2.22.2",
"node-sass": "^4.10.0",
"normalize.css": "^8.0.1",
"numeral": "^2.0.6",
"optimize-css-assets-webpack-plugin": "^5.0.1",
"react": "^16.6.1",
"react-dates": "^18.2.2",
"react-dom": "^16.6.1",
"react-modal": "^3.6.1",
"react-redux": "^5.1.1",
"react-router-dom": "^4.3.1",
"react-with-direction": "^1.3.0",
"redux": "^4.0.1",
"redux-thunk": "^2.3.0",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"uuid": "^3.3.2",
"validator": "^10.9.0",
"webpack": "^4.25.1",
"webpack-merge": "^4.1.4"
},
"devDependencies": {
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}