-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"name": "webpack-shared",
"version": "3.0.3",
"main": "dist/index.js",
"author": "Vlad Afonin <[email protected]>",
"license": "MIT",
"type": "module",
"description": "Shared webpack config",
"dependencies": {
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"css-loader": "^6.7.1",
"merge-anything": "^5.0.4",
"mini-css-extract-plugin": "^2.6.1",
"react-refresh": "^0.14.0",
"react-refresh-typescript": "^2.0.7",
"style-loader": "^3.3.1",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-dev-server": "^4.10.0"
},
"devDependencies": {
"@svgr/webpack": "^6.3.1",
"@types/html-webpack-plugin": "^3.2.6",
"@types/node": "^18.7.13",
"@types/react": "^18.0.17",
"@types/react-dom": "^18.0.6",
"cnj": "^1.0.3",
"html-webpack-plugin": "^5.5.0",
"nodemon": "^2.0.19",
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.2"
},
"scripts": {
"prepack": "pnpm build",
"build": "run-p build:*",
"build:tsc": "tsc -p tsconfig.json",
"build:app": "ts-node example/webpack.config.ts",
"dev": "nodemon -q -w example/webpack.config.ts -w src example/webpack.config.ts -- -s"
},
"exports": "./dist/index.js",
"keywords": [
"webpack",
"config",
"plugins",
"modular",
"split"
],
"repository": "github:mytecor/webpack-shared"
}