-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.93 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
{
"name": "lambda-auth",
"version": "1.0.0",
"main": "index.js",
"author": "Vincent LE GOFF <[email protected]>",
"license": "MIT",
"scripts": {
"eslint": "eslint --ext .ts src",
"prettier": "prettier -c \"./src/**/*.ts\"",
"prettier:write": "prettier -c \"./src/**/*.ts\" --write",
"lint": "yarn eslint && yarn prettier",
"watch:serve": "nodemon -e ts -w ./src --exec \"npm run build && npm run serve\"",
"serve": "node --inspect -r source-map-support/register -r dotenv/config dist/app.js | npx pino-pretty",
"watch:inspect": "nodemon --inspect -e ts -w ./src -x node -r ts-node/register src/app.ts",
"build": "npx tsc --incremental",
"clean": "rm -rf dist package",
"db:admin": "cross-env DYNAMO_ENDPOINT=http://localhost:8500 dynamodb-admin",
"test": "env $(cat .env.test) npx tap -J --ts src/**/*.test.ts src/*.test.ts",
"test:ci": "npm run test -- --cov --coverage-report=lcovonly"
},
"dependencies": {
"abstract-cache": "1.0.1",
"aws-lambda-fastify": "2.1.2",
"dynamoose": "2.8.5",
"fastify": "3.29.0",
"fastify-caching": "6.3.0",
"fastify-cookie": "5.6.0",
"fastify-cors": "6.1.0",
"fastify-env": "2.2.0",
"fastify-oauth2": "4.5.0",
"fastify-server-session": "5.0.1",
"fastify-swagger": "5.1.0",
"got": "11.8.3",
"pino": "7.11.0",
"uuid": "8.3.2"
},
"devDependencies": {
"@types/node": "17.0.21",
"@types/tap": "15.0.6",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.28.0",
"cross-env": "7.0.3",
"dotenv": "16.0.0",
"dynamodb-admin": "4.4.0",
"eslint": "8.18.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.0.0",
"nodemon": "2.0.15",
"pino-pretty": "7.6.0",
"prettier": "2.6.0",
"source-map-support": "0.5.21",
"tap": "16.2.0",
"ts-node": "10.9.1",
"typescript": "4.7.3"
},
"tap": {
"check-coverage": false
}
}