forked from bfanger/tvkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.68 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
{
"name": "tvkit",
"version": "0.12.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 --loglevel=warn src",
"lint:tsc": "tsc --noEmit",
"lint:eslint": "eslint --ext=js,ts,svelte --max-warnings=0 src",
"format": "prettier --write . && eslint --ext=js,ts,svelte --fix src",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install"
},
"lint-staged": {
"*.(c)?js": [
"eslint --max-warnings 0 --no-ignore"
]
},
"devDependencies": {
"@types/babel__core": "^7.20.0",
"@types/caniuse-lite": "^1.0.1",
"@types/express": "^4.17.17",
"@types/yargs": "^17.0.22",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"concurrently": "^7.6.0",
"eslint": "^8.35.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.0.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-triple": "^0.5.7",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"@babel/core": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.0",
"@babel/preset-env": "^7.20.2",
"@babel/runtime": "^7.21.0",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-terser": "^0.4.0",
"acorn": "^8.8.2",
"acorn-walk": "^8.2.0",
"browserslist": "^4.21.5",
"caniuse-lite": "^1.0.30001460",
"core-js": "^3.29.0",
"core-js-compat": "^3.29.0",
"cross-browser-polyfill": "^1.0.5",
"custom-event-polyfill": "^1.0.7",
"express": "^4.18.2",
"fast-text-encoding": "^1.0.6",
"http-proxy-middleware": "^2.0.6",
"intersection-observer": "^0.12.2",
"magic-string": "^0.30.0",
"node-html-parser": "^6.1.5",
"postcss": "^8.4.21",
"postcss-preset-env": "^8.0.1",
"proxy-polyfill": "^0.3.2",
"regenerator-runtime": "^0.13.11",
"rollup": "^3.18.0",
"systemjs": "^6.14.0",
"terser": "^5.16.5",
"unorm": "^1.6.0",
"whatwg-fetch": "^3.6.2",
"yargonaut": "^1.1.4",
"yargs": "^17.7.1"
}
}