-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.28 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
{
"name": "WebpackReactBootstrapStarter",
"version": "1.0.0",
"private": true,
"main": "app.js",
"repository": "https://github.com/hsolg/WebpackReactBootstrapStarter.git",
"author": "Henrik Solgaard <h@solg.no>",
"license": "GPL-3.0",
"scripts": {
"build-dev": "webpack --config webpack.dev.js",
"build-prod": "webpack --config webpack.prod.js",
"start": "webpack-dev-server --config webpack.dev.js",
"watch": "webpack --config webpack.dev.js --watch"
},
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"babel-loader": "^8.0.4",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"jquery": "^3.3.1",
"node-sass": "^4.9.4",
"popper.js": "^1.14.3",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9",
"webpack-merge": "^4.1.4"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"bootstrap": "^4.1.3",
"cookie-parser": "^1.4.3",
"cross-fetch": "^2.2.2",
"express-jwt": "^5.3.1",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-redux": "^5.0.7",
"react-router-dom": "^4.3.1",
"redux": "^4.0.0",
"redux-thunk": "^2.3.0"
}
}