-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2 KB
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
{
"name": "fastify-api",
"version": "0.0.0",
"type": "module",
"main": "dist/server.js",
"license": "AGPL-3.0-or-later",
"author": {
"name": "Commandee",
"email": "commandee@gmail.com"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"start": "node ./dist/server.js",
"lint": "eslint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"typecheck": "tsc --noEmit",
"postinstall": "node -e 'process.exit(process.env.NODE_ENV === `production` ? 0 : 1)' || prisma generate"
},
"devDependencies": {
"@fastify/swagger-ui": "^1.9.2",
"@fastify/type-provider-json-schema-to-ts": "^2.2.2",
"@fastify/type-provider-typebox": "^3.3.0",
"@types/bcryptjs": "^2.4.2",
"@types/js-yaml": "^4.0.5",
"@types/json-schema": "^7.0.12",
"@types/node": "^20.4.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"kysely-codegen": "^0.10.1",
"prettier": "^3.0.0",
"prisma": "^5.5.2",
"prisma-kysely": "^1.5.0",
"terser": "^5.19.2",
"typescript": "^5.0.2",
"vite": "^4.4.0",
"vite-plugin-node": "^3.0.2",
"vite-plugin-static-copy": "^0.17.0"
},
"dependencies": {
"@fastify/accepts": "^4.2.0",
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.4.0",
"@fastify/formbody": "^7.4.0",
"@fastify/jwt": "^7.2.0",
"@fastify/multipart": "^7.7.2",
"@fastify/static": "^6.10.2",
"@fastify/swagger": "^8.8.0",
"@planetscale/database": "^1.10.0",
"@sinclair/typebox": "^0.29.6",
"bcryptjs": "^2.4.3",
"dotenv": "^16.3.1",
"fastify": "^4.20.0",
"js-yaml": "^4.1.0",
"kysely": "^0.26.1",
"kysely-planetscale": "^1.4.0",
"nanoid": "^4.0.2",
"typed-html": "^3.0.1"
},
"contributors": [
{
"name": "AmeMeida",
"email": "ame.pistache@gmail.com"
},
{
"name": "Gs1lver",
"email": "alebasi@gmail.com"
}
],
"keywords": [
"api",
"fastify",
"vite",
"commandee",
"restaurant"
]
}