-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.36 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.36 KB
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
{
"name": "ly-node-server",
"version": "1.0.0",
"description": "用于node服务开发",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"node:dev": "open http://localhost:5050 & node index.js ",
"test": "echo \"Error: no test specified\" && exit 1",
"prebuild": "rimraf dist",
"build": "tsc",
"postbuild": "echo \"构建完成,文件位于 dist/\"",
"start": "node dist/app.js",
"predev": "echo \"启动开发环境...\"",
"dev": "nodemon --watch './src' -e ts --exec node --loader ts-node/esm ./src/app.ts",
"postdev": "echo \"开发服务器已停止\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/3254954760/node-server.git"
},
"author": "liyong",
"license": "ISC",
"bugs": {
"url": "https://github.com/3254954760/node-server/issues"
},
"homepage": "https://github.com/3254954760/node-server#readme",
"devDependencies": {
"@tsconfig/node16": "^16.1.3",
"@types/express": "^5.0.1",
"@types/node": "^22.14.1",
"browser-sync": "^3.0.4",
"ejs": "^3.1.10",
"express": "^5.1.0",
"husky": "^8.0.0",
"marked": "^15.0.12",
"nodemon": "^3.1.9",
"prettier": "^3.6.2",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.8.3"
},
"dependencies": {
"@grpc/grpc-js": "^1.14.3",
"@opentelemetry/api": "^1.9.0",
"@opentelemetry/exporter-trace-otlp-grpc": "^0.213.0",
"@opentelemetry/instrumentation-express": "^0.61.0",
"@opentelemetry/instrumentation-http": "^0.213.0",
"@opentelemetry/resources": "^2.6.0",
"@opentelemetry/sdk-trace-base": "^2.6.0",
"@opentelemetry/sdk-trace-node": "^2.6.0",
"@opentelemetry/semantic-conventions": "^1.40.0",
"autocannon": "^8.0.0",
"cross-env": "^7.0.3",
"http-proxy-middleware": "^3.0.5",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"knex": "^3.1.0",
"multer": "^2.0.2",
"mysql2": "^3.14.5",
"nodemailer": "^7.0.6",
"qrcode": "^1.5.4"
},
"lint-staged": {
"*.{js,jsx,tsx}": [
"prettier --write"
],
"*.{css,scss,less}": [
"prettier --write"
]
}
}