-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 907 Bytes
/
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
{
"name": "tskoa",
"version": "1.0.0",
"description": "koa+ts+mysql server",
"main": "index.ts",
"scripts": {
"start": "nodemon",
"test": "jest"
},
"jest": {
"preset": "ts-jest"
},
"keywords": [
"koa",
"ts",
"mysql"
],
"author": "Xulong",
"license": "MIT",
"dependencies": {
"@types/dotenv": "^8.2.0",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"@types/log4js": "^2.3.5",
"@types/sequelize": "^4.28.10",
"dotenv": "^10.0.0",
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"log4js": "^6.3.0",
"sequelize": "^6.7.0"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.11.2",
"@types/supertest": "^2.0.11",
"@types/validator": "^13.6.4",
"jest": "^27.3.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
}
}