-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.24 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
{
"name": "vue3-admin-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "nodemon -i ./node_modules/ --exec \"ts-node\" src/app.ts",
"db": "ts-node ./src/db/index.ts",
"prod": "tsc --outDir ./dist && node ./dist/app.js"
},
"repository": {
"type": "git",
"url": "[email protected]:brolly/vue3-admin-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@koa/cors": "^3.1.0",
"@koa/router": "^10.0.0",
"@types/node": "^15.6.1",
"@types/validator": "^13.1.3",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-bodyparser": "^4.3.0",
"koa-json": "^2.0.2",
"koa-jwt": "^4.0.1",
"koa-logger": "^3.2.1",
"koa-static": "^5.0.0",
"mysql2": "^2.2.5",
"sequelize": "^6.6.2"
},
"devDependencies": {
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.3",
"@types/koa__cors": "^3.0.2",
"@types/koa__router": "^8.0.4",
"@types/koa-bodyparser": "^4.3.0",
"@types/koa-json": "^2.0.18",
"@types/koa-jwt": "^3.3.0",
"@types/koa-logger": "^3.1.1",
"@types/koa-static": "^4.0.1",
"nodemon": "^2.0.7",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
}
}