-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.41 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
{
"name": "patch-package-in-action",
"version": "1.0.0",
"description": "patch-package in action",
"main": "./src/index.ts",
"type": "module",
"scripts": {
"dev-esm": "npx ts-node-esm ./src/index.ts",
"app-esm": "npx ts-node-esm ./src/app.ts",
"dev": "npx ts-node ./src/index.ts",
"app": "npx ts-node ./src/app.ts",
"clear": "rimraf ./node_modules",
"rmrf": "rimraf ./patchs",
"postinstall": "patch-package",
"patch-lodash": "npx patch-package lodash",
"patch-lodash-es": "npx patch-package lodash-es",
"patch-all": "npx patch-package lodash && npx patch-package lodash-es",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/web-fullstack/patch-package-in-action.git"
},
"keywords": [
"patch-package",
"node_modules",
"npm",
"Node.js",
"patch"
],
"author": "xgqfrms",
"license": "MIT",
"bugs": {
"url": "https://github.com/web-fullstack/patch-package-in-action/issues"
},
"homepage": "https://github.com/web-fullstack/patch-package-in-action#readme",
"dependencies": {
"lodash": "^4.17.21",
"lodash-es": "^4.17.21",
"patch-package": "^6.5.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@types/lodash": "^4.14.191",
"@types/lodash-es": "^4.17.7",
"app-node-env": "^1.4.7",
"rimraf": "^4.4.0",
"ts-node": "^10.9.1"
}
}