-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.13 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.13 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
{
"name": "project-starter-webpack",
"version": "1.0.2",
"description": "A test project for Min Webpack",
"main": "index.js",
"scripts": {
"build": "webpack -p",
"dev": "webpack -d",
"watch": "webpack -d --watch"
},
"author": "Tim Wright",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"@babel/register": "^7.7.4",
"babel-cli": "^6.26.0",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"browserslist": "^4.8.3",
"core-js": "^3.0.0",
"css-loader": "^3.4.2",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-loader": "^3.0.3",
"mini-css-extract-plugin": "^0.8.0",
"postcss": "^7.0.36",
"postcss-custom-media": "^7.0.8",
"postcss-import": "^12.0.1",
"postcss-loader": "^3.0.0",
"postcss-preset-env": "^6.7.0",
"style-loader": "^0.23.1",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@barebones/a11y-skipper": "^1.0.0",
"normalize.css": "^8.0.1"
},
"browserslist": [
"last 2 versions",
"> 1%",
"maintained node versions",
"IE 11"
]
}