-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
74 lines (74 loc) · 2.45 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
{
"author": "WeAreAthlon <[email protected]> (https://www.weareathlon.com)",
"description": "Starter project template boilerplate based on Webpack with SASS/PostCSS and babel ES6/7 support.",
"homepage": "https://github.com/WeAreAthlon/frontend-webpack-boilerplate#readme",
"license": "MIT",
"browserslist": [
"last 2 versions",
"> 5%"
],
"dependencies": {
"@amcharts/amcharts4": "^4.10.13",
"locizify": "^4.1.4",
"materialize-css": "^1.0.0-rc.2",
"sharer.js": "^0.4.1",
"svg-url-loader": "^7.1.1",
"url-loader": "^4.1.1"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"@babel/preset-typescript": "^7.12.7",
"ajv": "^6.12.6",
"autoprefixer": "^10.1.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.4.0",
"css-loader": "^5.0.1",
"css-minimizer-webpack-plugin": "^1.1.5",
"eslint": "^7.15.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.0.0-alpha.6",
"imagemin-webpack-plugin": "^2.4.2",
"jest": "^26.6.3",
"jest-mock-random": "^1.1.1",
"jest-transform-stub": "^2.0.0",
"mini-css-extract-plugin": "^1.3.2",
"postcss": "^8.2.0",
"postcss-loader": "^4.1.0",
"sass": "^1.30.0",
"sass-loader": "^10.1.0",
"terser-webpack-plugin": "^5.0.3",
"typescript": "^4.1.3",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.4.0"
},
"engines": {
"node": "^10 || ^12 || >=14"
},
"scripts": {
"build": "webpack --config configuration/webpack.dev.config.js --mode=development",
"watch": "webpack --config configuration/webpack.dev.config.js --mode=development --watch",
"dev": "webpack serve --config configuration/webpack.dev.config.js --mode=development",
"production": "webpack --config configuration/webpack.prod.config.js --mode=production",
"lint:js": "eslint --ext .js src/js/",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.(js|ts)$": "babel-jest",
".+\\.(css|styl|less|sass|scss|png|jpg|svg|ttf|woff|woff2|wav)$": "jest-transform-stub"
},
"moduleNameMapper": {
"\\.(css|less)$": "jest-transform-stub"
}
}
}