This repository has been archived by the owner on May 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.85 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
{
"name": "@valu/webpack-config",
"version": "0.15.2",
"description": "Webpack config",
"main": "create-webpack-config.js",
"types": "create-webpack-config.d.ts",
"scripts": {
"eslint": "eslint .",
"jest": "jest",
"build": "true # no need to build",
"test": "npm run eslint && npm run jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valu-digital/webpack-config.git"
},
"keywords": [
"webpack"
],
"files": [
"babel-loader.js",
"create-webpack-config.js",
"create-webpack-config.d.ts"
],
"author": "Esa-Matti Suuronen",
"license": "ISC",
"bugs": {
"url": "https://github.com/valu-digital/webpack-config/issues"
},
"homepage": "https://github.com/valu-digital/webpack-config",
"devDependencies": {
"eslint": "^7.1.0",
"eslint-config-prettier": "^6.11.0",
"jest": "^26.0.1",
"prettier": "^2.2.1",
"sh-thunk": "^0.3.2"
},
"dependencies": {
"@babel/core": "^7.13.16",
"@babel/preset-env": "^7.13.15",
"@babel/preset-react": "^7.13.13",
"@babel/preset-typescript": "^7.13.0",
"babel-loader": "^8.2.2",
"babel-plugin-macros": "^3.0.1",
"css-loader": "^3.5.3",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^3.2.0",
"mini-css-extract-plugin": "^0.9.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"postcss-loader": "^3.0.0",
"react-hot-loader": "^4.13.0",
"sass-loader": "^8.0.2",
"style-loader": "^1.2.1",
"url-loader": "^4.1.0",
"webpack": "^4.43.0",
"webpack-assets-manifest": "^3.1.1",
"webpack-bundle-analyzer": "^3.8.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}