-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.45 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
{
"name": "wishlist-app",
"version": "1.0.0",
"description": "",
"main": "dist/app.js",
"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 -L -e yaml,ts,gql -w ./src --exec \"npm run build && npm run serve\"",
"serve": "node --inspect -r source-map-support/register -r dotenv/config dist/app.js",
"watch:inspect": "nodemon --inspect -e yaml,ts,gql -w ./src -x node -r ts-node/register src/app.ts",
"build": "npx tsc --incremental && cp -R src/assets/ dist/assets/",
"clean": "rm -rf dist"
},
"author": "Vincent LE GOFF",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-s3": "3.556.0",
"@aws-sdk/client-timestream-write": "3.556.0",
"@fastify/aws-lambda": "3.2.0",
"@fastify/cors": "8.2.0",
"aws-lambda-fastify": "2.2.0",
"canvas": "2.11.0",
"fastify": "4.11.0",
"lodash": "4.17.21",
"pino": "8.19.0"
},
"devDependencies": {
"@types/lodash": "4.14.191",
"@types/node": "18.11.18",
"@typescript-eslint/eslint-plugin": "5.48.0",
"@typescript-eslint/parser": "5.48.0",
"dotenv": "16.4.5",
"eslint": "8.31.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
"nodemon": "2.0.20",
"prettier": "2.8.1",
"source-map-support": "0.5.21",
"typescript": "4.9.4"
}
}