-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 3.2 KB
/
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "auth-service",
"version": "1.0.0",
"description": "This project contains source code and supporting files for a serverless application that you can deploy with the SAM CLI. It includes the following files and folders.",
"main": "index.js",
"scripts": {
"local": "sam build --use-container && sam local start-api",
"start:local": "npm run build && npm run local",
"installSourceMapSupport": "npm --prefix ./dist install source-map-support",
"test": "jest --coverage ./src",
"prebuild": "npm run installSourceMapSupport",
"build": "webpack-cli",
"compile": "eslint . --ext .ts && tsc",
"clean": "rimraf .aws-sam .vscode",
"lint": "eslint . --ext .ts",
"fast-compile": "tsc",
"prewatch": "rimraf .aws-sam .vscode",
"preDeploy": "npm run build",
"build:local": "webpack --config webpack.local.js",
"build:local:watch": "npm run build:local -- --watch",
"watch": "webpack-cli -w"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@cucumber/cucumber": "^8.0.0",
"@types/aws-lambda": "^8.10.83",
"@types/bcryptjs": "^2.4.2",
"@types/ioredis": "^4.27.6",
"@types/jsonwebtoken": "^8.5.5",
"@types/jwt-then": "^1.0.0",
"@types/node": "^16.10.2",
"@types/pg": "^8.6.5",
"@types/validator": "^12.0.1",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.10.0",
"aws-sam-webpack-plugin": "^0.11.0",
"eslint": "^8.13.0",
"eslint-config-airbnb-typescript-prettier": "^5.0.0",
"lint-staged": "^11.0.0",
"noop2": "^2.0.0",
"prettier": "^2.3.0",
"prettier-eslint": "^12.0.0",
"rimraf": "^3.0.2",
"sequelize-cli": "^6.2.0",
"terser-webpack-plugin": "^2.3.8",
"ts-loader": "^6.2.2",
"ts-node": "^8.10.2",
"tsconfig-paths": "^3.9.0",
"tslib": "^2.3.1",
"typescript": "^3.9.7",
"uuid": "^8.3.2",
"webpack": "^4.46.0",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/plugin-transform-typescript": "^7.16.8",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@jest/types": "^27.2.4",
"@types/data-api-client": "^1.2.4",
"@types/jest": "^27.4.1",
"@types/util.promisify": "^1.0.4",
"aws-crt": "^1.12.1",
"aws-sdk": "^2.997.0",
"aws-sdk-js-v3-rds-signer": "^1.0.1",
"axios": "^0.21.4",
"babel-loader": "^8.2.4",
"bcrypt": "^5.0.1",
"bcryptjs": "^2.4.3",
"cucumber": "^7.0.0-rc.0",
"data-api-client": "^1.3.0",
"data-api-migrations": "^1.0.0-alpha.3",
"dotenv": "^16.0.0",
"eslint-loader": "^3.0.4",
"file-loader": "^6.2.0",
"from": "^0.1.7",
"import": "0.0.6",
"jest": "^27.2.4",
"jest-when": "^3.5.1",
"jsonwebtoken": "^8.5.1",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"reflect-metadata": "^0.1.13",
"source-map-support": "^0.5.10",
"tedious": "^14.4.0",
"ts-jest": "^27.1.4",
"typescript-eslint": "0.0.1-alpha.0",
"validator": "^13.7.0",
"webpack-node-externals": "^3.0.0",
"winston": "^3.7.2",
"yaml-loader": "^0.7.0"
}
}