添加更多配置文件设置,实现了一个api,完成部分文件的部分测试
Some checks failed
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Qumolama.d
2022-05-03 18:57:20 +08:00
parent 3de6ad9a2a
commit 3b8712a212
14 changed files with 596 additions and 21 deletions

View File

@@ -6,16 +6,20 @@
"main": "src/index.js",
"license": "Anti-996",
"devDependencies": {
"cross-env": "^7.0.3",
"esbuild": "^0.14.38",
"jest": "^28.0.3",
"nodemon": "^2.0.16"
"nodemon": "^2.0.16",
"shelljs.exec": "^1.1.8"
},
"dependencies": {
"fastify": "^3.29.0",
"hex-to-uuid": "^1.1.1",
"mongoose": "^6.3.1",
"pino-pretty": "^7.6.1"
},
"scripts": {
"dev": "nodemon --watch src/index.js"
"dev": "nodemon --watch src/index.js",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules UNIT_TEST=1 NODE_NO_WARNINGS=1 jest"
}
}