forked from Nice-PLQ/devtools-remote-debugger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
{
"name": "devtools-remote-debugger",
"version": "1.0.0",
"description": "remote debugger by chrome devtools",
"main": "index.js",
"scripts": {
"client": "webpack serve --config ./src/client/webpack.config.dev.js",
"build": "webpack --progress --config ./src/client/webpack.config.js",
"serve": "cross-env NODE_ENV=development npx nodemon ./src/server/index.js",
"start": "cross-env NODE_ENV=production node ./src/server/index.js",
"lint": "eslint src/**/*.js --fix"
},
"keywords": [
"devtools",
"debugger",
"remote debugger"
],
"engines": {
"node": ">= 14"
},
"author": "yangling",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-proposal-export-namespace-from": "^7.18.9",
"@babel/plugin-proposal-function-sent": "^7.18.6",
"@babel/plugin-proposal-numeric-separator": "^7.18.6",
"@babel/plugin-proposal-optional-chaining": "^7.21.0",
"@babel/plugin-proposal-throw-expressions": "^7.18.6",
"@babel/preset-env": "^7.21.4",
"@vue/compiler-sfc": "^3.2.47",
"babel-loader": "^9.1.2",
"cross-env": "^7.0.3",
"css-loader": "^6.7.3",
"dotenv-webpack": "^8.0.1",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"html-webpack-plugin": "^5.5.0",
"mini-css-extract-plugin": "^2.7.5",
"nodemon": "^2.0.22",
"unplugin-auto-import": "^0.15.2",
"unplugin-vue-components": "^0.24.1",
"vue-loader": "^17.0.1",
"vue-style-loader": "^4.1.3",
"webpack": "^5.79.0",
"webpack-cli": "^5.0.1",
"webpack-dev-server": "^4.13.2"
},
"dependencies": {
"@koa/cors": "^4.0.0",
"@koa/router": "^12.0.0",
"callsite": "^1.0.0",
"chalk": "^4.1.2",
"dayjs": "^1.11.7",
"dotenv": "^16.0.3",
"element-plus": "^2.3.3",
"error-stack-parser": "^2.1.4",
"image-to-base64": "^2.2.0",
"js-cookie": "^3.0.1",
"koa": "^2.14.2",
"koa-compress": "^5.1.1",
"koa-send": "^5.0.1",
"lodash.throttle": "^4.1.1",
"mime": "^4.0.1",
"reconnecting-websocket": "^4.4.0",
"specificity": "^0.4.1",
"string-random": "^0.1.3",
"vue": "^3.2.47",
"vue-i18n": "^9.2.2",
"vue-router": "^4.1.6",
"ws": "^7.5.9"
}
}