-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
85 lines (85 loc) · 2.58 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "tvkit",
"version": "0.18.0",
"description": "Proxy to run a modern dev server in old browsers",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bfanger/tvkit.git"
},
"type": "module",
"bin": {
"tvkit": "bin/tvkit.js"
},
"scripts": {
"dev": "pm2-dev \"bin/tvkit.js serve --port 3011 --browser ie11\"",
"dev:latest": "pm2-dev \"bin/tvkit.js serve --browser='last 1 chrome versions'\"",
"lint": "concurrently -c \"#c596c7\",\"#3074c0\",\"#7c7cea\" --kill-others-on-fail \"npm:lint:*\"",
"lint:prettier": "prettier --check src",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --max-warnings=0 src",
"format": "eslint --fix src && prettier --write src",
"test": "vitest run",
"preinstall": "npx only-allow pnpm",
"prepare": "husky"
},
"lint-staged": {
"*.(c)?js": [
"eslint --max-warnings 0 --no-ignore"
]
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"@types/caniuse-lite": "^1.0.5",
"@types/express": "^5.0.0",
"@types/yargs": "^17.0.33",
"concurrently": "^9.0.1",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-only-warn": "^1.1.0",
"globals": "^15.10.0",
"husky": "^9.1.6",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.8.0",
"vitest": "^2.1.2"
},
"dependencies": {
"@babel/core": "^7.25.7",
"@babel/plugin-transform-runtime": "^7.25.7",
"@babel/preset-env": "^7.25.7",
"@babel/runtime": "^7.25.7",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@ungap/is-connected": "^0.2.0",
"abortcontroller-polyfill": "^1.7.5",
"acorn": "^8.12.1",
"acorn-walk": "^8.3.4",
"browserslist": "^4.24.0",
"caniuse-lite": "^1.0.30001667",
"core-js": "^3.38.1",
"core-js-compat": "^3.38.1",
"cross-browser-polyfill": "^1.0.5",
"custom-event-polyfill": "^1.0.7",
"es6-proxy-polyfill": "^2.1.1",
"express": "^4.21.0",
"fast-text-encoding": "^1.0.6",
"http-proxy-middleware": "^3.0.2",
"intersection-observer": "^0.12.2",
"magic-string": "^0.30.11",
"node-before-polyfill": "^1.0.0",
"node-html-parser": "^6.1.13",
"postcss": "^8.4.47",
"postcss-preset-env": "^10.0.6",
"postcss-selector-parser": "^6.1.2",
"regenerator-runtime": "^0.14.1",
"rollup": "^4.24.0",
"systemjs": "^6.15.1",
"terser": "^5.34.1",
"unorm": "^1.6.0",
"web-streams-polyfill": "^4.0.0",
"whatwg-fetch": "^3.6.20",
"yargonaut": "^1.1.4",
"yargs": "^17.7.2"
}
}