-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from joog-lim/develop
Develop
- Loading branch information
Showing
55 changed files
with
3,228 additions
and
5,521 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,26 @@ | ||
# ignore node_moduels | ||
node_modules | ||
|
||
# ignore config files | ||
*.env | ||
# ignore node_moduels | ||
node_modules | ||
|
||
# ignore config files | ||
.env | ||
ormconfig.json | ||
|
||
# ignore build, byte files | ||
.build | ||
dist | ||
|
||
# ignore serverless deploy files | ||
.serverless | ||
|
||
# yarn | ||
yarn.lock | ||
yarn-error.log | ||
|
||
# typeorm | ||
src/migration | ||
|
||
# ignore package.lock.json | ||
package-lock.json | ||
|
||
# ignore test environment | ||
test/config.* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"[typescript]": { | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,68 @@ | ||
{ | ||
"name": "apiv3", | ||
"version": "1.0.0", | ||
"name": "api", | ||
"version": "3.0.0", | ||
"repository": "https://github.com/joog-lim/Bamboo-APIv3.git", | ||
"license": "apache2.0", | ||
"license": "SEE LICENSE IN LICENSE", | ||
"scripts": { | ||
"start": "sls offline start", | ||
"deploy": "sls deploy" | ||
"deploy": "sls deploy", | ||
"test": "jest --verbose", | ||
"migration": "yarn migration:remove && yarn migration:create && tsc && yarn migration:generate && tsc && yarn typeorm migration:run", | ||
"migration:create": "typeorm migration:create -n auto_script", | ||
"migration:generate": "typeorm migration:generate -n auto_script", | ||
"migration:remove": "rm -rf */src/migration || del /s /Q src\\migration || del /s /Q dist\\src\\migration" | ||
}, | ||
"dependencies": { | ||
"@fxts/core": "^0.5.0", | ||
"apple-signin-auth": "^1.5.1", | ||
"axios": "^0.24.0", | ||
"serverless-http": "^2.7.0" | ||
"google-auth-library": "^7.11.0", | ||
"jsonwebtoken": "^8.5.1", | ||
"mysql2": "^2.3.3", | ||
"nodemailer": "^6.7.2", | ||
"reflect-metadata": "^0.1.13", | ||
"serverless-http": "^2.7.0", | ||
"typeorm": "^0.2.41" | ||
}, | ||
"devDependencies": { | ||
"@babel/plugin-proposal-decorators": "^7.16.7", | ||
"@babel/preset-env": "^7.16.8", | ||
"@babel/preset-typescript": "^7.16.7", | ||
"@types/aws-lambda": "^8.10.84", | ||
"@types/jest": "^27.4.0", | ||
"@types/jsonwebtoken": "^8.5.6", | ||
"@types/node": "^16.11.7", | ||
"@types/nodemailer": "^6.4.4", | ||
"dotenv": "^10.0.0", | ||
"jest": "^27.4.7", | ||
"serverless": "^2.64.1", | ||
"serverless-dotenv-plugin": "^3.10.0", | ||
"serverless-offline": "^8.2.0", | ||
"serverless-plugin-typescript": "^2.1.0", | ||
"typescript": "^4.4.4" | ||
"supertest": "^6.2.0", | ||
"ts-jest": "^27.1.2", | ||
"ts-loader": "^9.2.6", | ||
"typescript": "^4.4.4", | ||
"webpack": "^5.65.0" | ||
}, | ||
"jest": { | ||
"moduleFileExtensions": [ | ||
"js", | ||
"ts", | ||
"json" | ||
], | ||
"rootDir": ".", | ||
"testRegex": ".*\\.test\\.ts$", | ||
"transform": { | ||
"^.+\\.(t|j)s$": "ts-jest" | ||
}, | ||
"collectCoverageFrom": [ | ||
"**/*.(t|j)s" | ||
], | ||
"coverageDirectory": "../coverage", | ||
"testEnvironment": "node", | ||
"setupFiles": [ | ||
"<rootDir>/test/setup-tests.ts" | ||
] | ||
} | ||
} |
Oops, something went wrong.