forked from kmalakoff/esbuild-plugin-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.37 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
{
"name": "esbuild-plugin-dev-server",
"version": "1.1.3",
"description": "Dev server for esbuild with live reload and error overlay",
"keywords": [
"dev",
"server",
"esbuild",
"plugin",
"error",
"overlay",
"live",
"reload",
"react",
"typescript",
"express",
"electron"
],
"homepage": "https://github.com/kmalakoff/esbuild-plugin-dev-server#README.md",
"repository": "kmalakoff/esbuild-plugin-dev-server",
"license": "MIT",
"author": "Kevin Malakoff <[email protected]> (https://github.com/kmalakoff)",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "",
"format": "prettier --write .",
"lint": "eslint . --ext .js,.jsx,.ts,.tsx",
"test": "mocha test/spec/*.test.js --no-timeouts",
"test:engines": "nvu engines npm test"
},
"dependencies": {
"serve-handler": "^6.1.3",
"sockjs": "^0.3.24"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"esbuild": "^0.15.3",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-react": "^7.30.1",
"fs-extra": "^10.1.0",
"http-terminator": "^3.2.0",
"mocha": "^10.0.0",
"playwright": "^1.25.0",
"prettier": "^2.7.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"engines": {
"node": ">=12"
}
}