-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
82 lines (82 loc) · 2.26 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "webpack-template",
"version": "1.3.0",
"description": "webpack-template",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server --open --config ./config/webpack.dev.conf.js",
"prod": "npm run clean -s && set NODE_ENV=production && webpack --config ./config/webpack.build.conf.js",
"clean": "shx rm -rf dist",
"lint": "eslint --debug src/",
"smart-grid": "node smart-grid.js",
"test": "jest"
},
"browserslist": [
"> 1%",
"last 3 version"
],
"author": "Alexander Panov",
"repository": {
"type": "git",
"url": "git+https://github.com/abyss-soft/webpack-template-base.git"
},
"license": "MIT",
"jest": {
"verbose": true,
"bail": true,
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coverageDirectory": "coverage",
"moduleNameMapper": {
"\\.(jpe?g|png|gif|eot|otf|webp|svg|ttf|woff2?|mp[34]|webm|wav|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less|s[ac]ss|styl)$": "<rootDir>/__mocks__/styleMock.js"
},
"moduleFileExtensions": [
"js",
"jsx"
],
"moduleDirectories": [
"node_modules"
]
},
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/preset-env": "^7.7.7",
"autoprefixer": "^10.4.16",
"babel-eslint": "^10.1.0",
"babel-loader": "^8.0.6",
"copy-webpack-plugin": "^11.0.0",
"core-js": "^3.6.5",
"css-loader": "^6.7.3",
"cssnano": "^6.0.1",
"dotenv": "^8.2.0",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^17.0.0",
"eslint-config-jest-enzyme": "^6.0.2",
"eslint-loader": "^4.0.2",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-jest": "^21.18.0",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "^7.9.1",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.5.0",
"html-webpack-plugin-remove": "^0.1.0",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.2",
"postcss-loader": "^7.0.2",
"sass-loader": "^13.2.0",
"shx": "^0.3.2",
"smart-grid": "^2.1.2",
"style-loader": "^1.1.2",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^5.0.4",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"sass": "^1.53.0"
}
}