-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"name": "node-koa-service",
"version": "1.0.4",
"description": "node.js + koa2 + typescript 构建服务端应用",
"main": "index.js",
"scripts": {
"build": "rimraf dist/* && tsc && node dist/index.js",
"dev": "ts-node-dev --respawn ./src/index.ts",
"build-sql": "ts-node-dev --respawn ./mysql/creator.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Travis-hjs/node-koa.git"
},
"keywords": [
"koa",
"nodejs"
],
"author": "Travis-hjs",
"license": "ISC",
"bugs": {
"url": "https://github.com/Travis-hjs/node-koa/issues"
},
"homepage": "https://github.com/Travis-hjs/node-koa#readme",
"dependencies": {
"koa": "2.15.3",
"koa-body": "6.0.1",
"koa-router": "13.0.1",
"koa-static": "5.0.0",
"mysql": "2.18.1"
},
"devDependencies": {
"@types/koa": "2.15.0",
"@types/koa-router": "7.4.8",
"@types/koa-static": "4.0.4",
"@types/mysql": "2.15.26",
"ts-node": "10.9.2",
"ts-node-dev": "2.0.0",
"typescript": "5.6.3"
}
}