-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.14 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.14 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
{
"name": "koa-esm",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec NODE_OPTIONS=--inspect-brk NODE_ENV=development ts-node --files ./src/index.ts",
"dev": "cross-env NETWORK_DEBUG_MODE=true node --inspect --watch ./src/index.js",
"start": "cross-env NODE_ENV=production node --inspect --watch ./src/index.js",
"build": "vite build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/koa": "^2.15.0",
"@types/koa-router": "^7.4.8",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"node-network-devtools": "workspace:*",
"nodemon": "^3.1.0",
"tslib": "^2.6.2",
"vite": "^5.2.10",
"vite-plugin-dts": "^3.8.3",
"vitest": "^1.5.0"
},
"dependencies": {
"axios": "^1.13.5",
"cross-env": "^7.0.3",
"got": "^14.4.1",
"koa": "^2.16.2",
"koa-body": "^6.0.1",
"koa-router": "^12.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
}
}