-
Notifications
You must be signed in to change notification settings - Fork 363
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 821 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 821 Bytes
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
{
"name": "@meting/server",
"version": "1.10.1",
"main": "src/index.js",
"type": "module",
"author": "metowolf",
"license": "MIT",
"private": true,
"scripts": {
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"lint": "eslint ."
},
"dependencies": {
"@hono/node-server": "^1.19.6",
"@meting/core": "^1.6.0",
"dotenv": "^17.2.3",
"hash.js": "^1.1.7",
"hono": "^4.12.4",
"lru-cache": "^11.2.2",
"pino": "^10.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"eslint": "^9.39.1",
"eslint-config-standard": "17.1.0",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-n": "17.23.1",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-standard": "^5.0.0",
"nodemon": "^3.1.11",
"pino-pretty": "^13.1.2"
}
}