forked from privatenumber/esbuild-loader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.53 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
67
68
69
70
71
72
73
74
{
"name": "esbuild-mix-tsc-loader",
"version": "1.0.1",
"description": "⚡️ build with esbuild and emitDecoratorMetadata by tsc",
"keywords": [
"esbuild",
"webpack",
"loader",
"typescript",
"esnext",
"emitDecoratorMetadata"
],
"license": "MIT",
"repository": "Candane/esbuild-mix-tsc-loader",
"funding": "https://github.com/Candane/esbuild-mix-tsc-loader?sponsor=1",
"author": {
"name": "peigo",
"email": "[email protected]"
},
"files": [
"dist"
],
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "jest --coverage",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint",
"jest --bail --findRelatedTests"
]
},
"peerDependencies": {
"webpack": "^4.40.0 || ^5.0.0"
},
"dependencies": {
"esbuild": "^0.14.39",
"joycon": "^3.0.1",
"json5": "^2.2.0",
"loader-utils": "^2.0.0",
"strip-comments": "^2.0.1",
"tapable": "^2.2.0",
"webpack-sources": "^2.2.0"
},
"devDependencies": {
"@pvtnbr/eslint-config": "^0.22.0",
"@types/jest": "^27.0.3",
"@types/loader-utils": "^2.0.3",
"@types/webpack": "^4.41.32",
"css-loader": "^5.2.0",
"eslint": "^8.15.0",
"husky": "^4.3.8",
"jest": "^27.4.4",
"lint-staged": "^12.1.2",
"memfs": "^3.4.0",
"mini-css-extract-plugin": "^1.4.0",
"typescript": "^4.6.4",
"unionfs": "^4.4.0",
"webpack": "^4.44.2",
"webpack-test-utils": "^1.1.0",
"webpack5": "npm:webpack@^5.0.0"
},
"eslintConfig": {
"extends": "@pvtnbr"
}
}