-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.81 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
{
"name": "@wisersolutions/bundle-js",
"version": "0.1.5",
"description": "Provides default Webpack config and build scripts for other packages",
"repository": {
"type": "git",
"url": "git+https://github.com/WiserSolutions/bundle-js"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"author": "Wiser Solutions, Inc.",
"contributors": [
"Jan Konopásek"
],
"license": "MIT",
"main": "./lib/index.js",
"module": "./es/index.js",
"files": [
"/es",
"/lib"
],
"scripts": {
"format": "prettier --write \"src/**/*.js\" --loglevel warn",
"lint": "eslint -f @wisersolutions/eslint-formatter-idea ./src",
"test": "jest 'src/'",
"build": "transpile-js"
},
"devDependencies": {
"@wisersolutions/eslint-config": "^2.0.6",
"@wisersolutions/eslint-formatter-idea": "^1.0.8",
"@wisersolutions/transpile-js": "^0.0.19",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"eslint": "^7.24.0",
"eslint-config-prettier": "^8.2.0",
"eslint-plugin-jest": "^24.3.5",
"jest": "^26.6.3",
"lodash.get": "^4.4.2",
"lodash.set": "^4.3.2",
"prettier": "^2.2.1"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@babel/runtime-corejs3": "^7.13.16",
"babel-loader": "^8.2.2",
"compression-webpack-plugin": "^7.1.2",
"core-js": "^3.10.2",
"css-loader": "^5.2.4",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.3.1",
"less-loader": "^8.1.1",
"lodash.flatten": "^4.4.0",
"lodash.mapvalues": "^4.6.0",
"react-svg-loader": "^3.0.3",
"style-loader": "^2.0.0",
"terser-webpack-plugin": "^5.1.1",
"url-loader": "^4.1.1",
"webpack": "^5.34.0",
"webpack-livereload-plugin": "^3.0.1",
"webpack-notifier": "^1.13.0"
},
"peerDependencies": {
"webpack": ">=5"
}
}