-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 826 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
{
"name": "koa-app",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"dev": "nodemon server.js",
"mock-dev": "NODE_ENV=development http-request-mock-cli --index src/index.js -w \"nodemon server.js\"",
"test": "jest"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.16.7",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-modules-commonjs": "^7.16.7",
"@babel/preset-env": "^7.16.7",
"babel-jest": "^27.4.6",
"jest": "^27.4.7",
"nodemon": "^2.0.12"
},
"dependencies": {
"@babel/plugin-transform-runtime": "^7.16.8",
"axios": "^0.26.0",
"got": "^12.0.1",
"http-request-mock": "^1.7.11",
"koa": "^2.13.1",
"koa-router": "^10.1.1",
"ts-jest": "^27.1.2"
}
}