## 概要 [Task4164: function修正](https://paruru.nds-tyo.co.jp:8443/tfs/ReciproCollection/fa4924a4-d079-4fab-9fb5-a9a11eb205f0/_workitems/edit/4164) - 元PBI or タスクへのリンク(内容・目的などはそちらにあるはず) - 何をどう変更したか、追加したライブラリなど - このPull Requestでの対象/対象外 - 影響範囲(他の機能にも影響があるか) ## レビューポイント - 特にレビューしてほしい箇所 - 軽微なものや自明なものは記載不要 - 修正範囲が大きい場合などに記載 - 全体的にや仕様を満たしているか等は本当に必要な時のみ記載 - 修正箇所がほかの機能に影響していないか ## UIの変更 - Before/Afterのスクショなど - スクショ置き場 ## クエリの変更 - Repositoryを変更し、クエリが変更された場合は変更内容を確認する - Before/Afterのクエリ - クエリ置き場 ## 動作確認状況 - ローカルで確認、develop環境で確認など - 行った修正がデグレを発生させていないことを確認できるか - 具体的にどのような確認をしたか - どのケースに対してどのような手段でデグレがないことを担保しているか ## 補足 - 相談、参考資料などがあれば
61 lines
1.5 KiB
JSON
61 lines
1.5 KiB
JSON
{
|
|
"name": "",
|
|
"version": "1.0.0",
|
|
"description": "",
|
|
"main": "dist/src/functions/*.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"watch": "tsc -w",
|
|
"clean": "rimraf dist",
|
|
"prestart": "npm run clean && npm run build",
|
|
"start": "func start",
|
|
"test": "tsc --noEmit && sql-migrate up -config=/app/dictation_server/db/dbconfig.yml -env=test && jest -w 1",
|
|
"typecheck": "tsc --noEmit",
|
|
"codegen": "sh codegen.sh"
|
|
},
|
|
"dependencies": {
|
|
"@azure/functions": "^4.0.0",
|
|
"@azure/identity": "^3.1.3",
|
|
"@azure/storage-blob": "^12.17.0",
|
|
"@microsoft/microsoft-graph-client": "^3.0.5",
|
|
"@sendgrid/mail": "^7.7.0",
|
|
"dotenv": "^16.0.3",
|
|
"mysql2": "^2.3.3",
|
|
"redis": "^3.1.2",
|
|
"typeorm": "^0.3.10"
|
|
},
|
|
"devDependencies": {
|
|
"@openapitools/openapi-generator-cli": "^2.9.0",
|
|
"@types/jest": "^27.5.0",
|
|
"@types/node": "18.x",
|
|
"@types/redis": "^2.8.13",
|
|
"@types/redis-mock": "^0.17.3",
|
|
"azure-functions-core-tools": "^4.x",
|
|
"base64url": "^3.0.1",
|
|
"jest": "^28.0.3",
|
|
"redis-mock": "^0.56.3",
|
|
"rimraf": "^5.0.0",
|
|
"sqlite3": "^5.1.6",
|
|
"supertest": "^6.1.3",
|
|
"ts-jest": "^28.0.1",
|
|
"typescript": "^4.0.0"
|
|
},
|
|
"jest": {
|
|
"moduleFileExtensions": [
|
|
"js",
|
|
"json",
|
|
"ts"
|
|
],
|
|
"rootDir": "src",
|
|
"testRegex": ".*\\.spec\\.ts$",
|
|
"transform": {
|
|
"^.+\\.(t|j)s$": "ts-jest"
|
|
},
|
|
"collectCoverageFrom": [
|
|
"**/*.(t|j)s"
|
|
],
|
|
"coverageDirectory": "../coverage",
|
|
"testEnvironment": "node"
|
|
}
|
|
}
|