-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.17 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.17 KB
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
{
"name": "webpack-lib-config",
"description": "Personal Webpack configuration for library building.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"version": "2.0.0",
"license": "MIT",
"private": true,
"scripts": {
"dev": "webpack --watch --progress --mode development",
"build": "webpack --progress --mode production"
},
"homepage": "https://github.com/dvlden/webpack-lib-config#readme",
"bugs": "https://github.com/dvlden/webpack-lib-config/issues",
"repository": "github:dvlden/webpack-lib-config",
"author": {
"name": "Nenad Novaković",
"email": "n.dvlden@gmail.com",
"url": "https://dvl.sh/"
},
"keywords": [
"webpack",
"config",
"build",
"bundle",
"module",
"library"
],
"browserslist": [
"last 1 major version",
"> 1%"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.15.6",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^4.0.0",
"ts-loader": "^9.2.6",
"tsconfig-paths-webpack-plugin": "^3.5.1",
"typescript": "^4.4.3",
"webpack": "^5.56.0",
"webpack-cli": "^4.8.0"
}
}