-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 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
{
"name": "pictures_loader",
"version": "1.0.0",
"description": "loader",
"main": "index.js",
"repository": "https://github.com/DiRover/ahj-homework-http-7.3.git",
"author": "Dmitriy Rovenskiy",
"license": "MIT",
"dependencies": {
"core-js": "3",
"file-loader": "^6.1.0",
"html-webpack-plugin": "^4.5.0",
"mini-css-extract-plugin": "^0.11.2",
"terser-webpack-plugin": "^4.2.2",
"webpack": "^4.44.2",
"webpack-dev-server": "^3.11.0",
"yarn": "^1.22.10"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/preset-env": "^7.11.5",
"babel-cli": "^6.26.0",
"babel-loader": "^8.1.0",
"css-loader": "^4.3.0",
"eslint": "^7.12.1",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.1",
"html-loader": "^1.3.1",
"jest": "^26.4.2",
"optimize-css-assets-webpack-plugin": "^5.0.4",
"puppeteer": "^5.3.1",
"url-loader": "^4.1.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^5.1.4"
},
"scripts": {
"build": "webpack --config webpack.prod.js",
"buildbabel": "babel src -d dist",
"start": "webpack-dev-server --config webpack.dev.js",
"lint": "eslint .",
"jest": "jest --coverage",
"test": "jest --testPathPattern=./src/",
"coverage": "jest --testPathPattern=./src/ --coverage",
"e2e": "jest --testPathPattern=./e2e/",
"fix": "lint -- --fix"
}
}