-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.65 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
{
"name": "@myartverse/backend",
"version": "0.0.0",
"private": true,
"main": "index.js",
"repository": "[email protected]:VulpoTheDev/MyArtverse-Backend",
"author": "MyArtverse",
"license": "Apache-2.0",
"scripts": {
"start": "node index.js",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts | pino-pretty",
"lint": "eslint . --quiet && prettier --write .",
"lint:fix": "eslint . --quiet --fix && prettier --write .",
"prepare": "husky || true"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{cjs,js,ts,ts,md,json}": [
"prettier --write .",
"eslint . --quiet"
]
},
"dependencies": {
"@aws-sdk/client-s3": "^3.521.0",
"@fastify/cookie": "^9.3.1",
"@fastify/cors": "^9.0.1",
"@fastify/jwt": "^8.0.0",
"@fastify/multipart": "^8.1.0",
"@fastify/swagger": "^8.14.0",
"@fastify/swagger-ui": "^3.0.0",
"@types/bcrypt": "^5.0.2",
"bcrypt": "^5.1.1",
"dotenv": "^16.4.5",
"fastify": "^4.26.1",
"form-auto-content": "^3.2.1",
"nodemailer": "^6.9.10",
"pg": "^8.11.3",
"pino-pretty": "^10.3.1",
"reflect-metadata": "^0.2.1",
"tap": "^18.7.0",
"typeorm": "^0.3.20"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^1.6.2",
"@types/node": "^20.11.19",
"@types/nodemailer": "^6.4.14",
"@typescript-eslint/eslint-plugin": "^7.0.2",
"@typescript-eslint/parser": "^7.0.2",
"eslint": "^8.57.0",
"eslint-plugin-unused-imports": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.3.3"
}
}