-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.38 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
{
"name": "severyanovhka-api",
"version": "1.0.1",
"main": "index.js",
"scripts": {
"build": "rimraf ./build && tsc",
"start": "npm run build && node build/src/index.js",
"seed": "ts-node seed/index.ts"
},
"keywords": [
"api",
"backend",
"fastify",
"prisma",
"typebox",
"severyanochka"
],
"author": "@frontenders-game",
"license": "MIT",
"description": "Backend for grocery store.",
"prisma": {
"schema": "prisma/schema.prisma"
},
"dependencies": {
"@fastify/autoload": "^5.7.1",
"@fastify/cors": "^8.2.1",
"@fastify/jwt": "^6.7.0",
"@fastify/multipart": "^7.5.0",
"@fastify/static": "^6.9.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.5.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@prisma/client": "^4.12.0",
"@sinclair/typebox": "^0.25.9",
"ajv-keywords": "^5.1.0",
"bcrypt": "^5.1.0",
"fastify": "^4.14.1",
"jimp": "^0.22.7",
"nodemailer": "^6.9.1",
"slugify": "^1.6.5",
"type-fest": "^3.7.0"
},
"devDependencies": {
"@segment/ajv-human-errors": "^2.6.0",
"@types/bcrypt": "^5.0.0",
"@types/node": "^18.15.0",
"@types/nodemailer": "^6.4.7",
"fastify-tsconfig": "^1.0.1",
"nodemon": "^2.0.22",
"pino-pretty": "^9.4.0",
"prisma": "^4.12.0",
"rimraf": "^4.4.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}