-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "webapp-boilerplate",
"version": "1.0.1",
"description": "This boilerplate is a front-end web app to start a new project from scratch.",
"keywords": [
"npm",
"webpack",
"babel",
"react",
"bootstrap"
],
"license": "ISC",
"author": "Eduardo Basso <[email protected]>",
"contributors": [],
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/BeyondLabsEY/webapp-boilerplate.git"
},
"scripts": {
"dev": "webpack-dev-server --mode development --open",
"build": "webpack --mode production --progress"
},
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/preset-env": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"autoprefixer": "^9.5.1",
"babel-loader": "^8.0.5",
"bootstrap": "^4.3.1",
"css-loader": "^2.1.1",
"file-loader": "^3.0.1",
"html-loader": "^0.5.5",
"html-webpack-plugin": "^3.2.0",
"jquery": ">=3.5.0",
"lodash": ">=4.17.19",
"lodash.template": ">=4.5.0",
"node-sass": "^4.13.1",
"popper.js": "^1.15.0",
"postcss-loader": "^3.0.0",
"precss": "^4.0.0",
"prop-types": "^15.7.2",
"react": "^16.8.6",
"react-bootstrap": "^1.0.0-beta.9",
"react-dom": "^16.8.6",
"sass-loader": "^7.1.0",
"style-loader": "^0.23.1",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.5",
"webpack-dev-server": "^3.7.2"
}
}