-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.39 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.39 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
{
"name": "ppsl-cd-api",
"version": "0.1.0",
"license": "AGPL-3.0-only",
"packageManager": "yarn@3.5.0",
"type": "module",
"main": "src/server.js",
"scripts": {
"start": "node ./src/server.js",
"prisma:generate": "yarn rimraf ./.prisma && yarn pnpify prisma generate",
"prisma:db-push": "yarn pnpify prisma db push",
"prisma:migrate-reset": "yarn pnpify prisma migrate reset",
"prisma:migrate-dev": "yarn pnpify prisma migrate dev",
"prisma:seed": "yarn node ./prisma/seed/types.js",
"lint": "standard",
"lintfix": "standard --fix"
},
"dependencies": {
"@auth/core": "^0.8.2",
"@fastify/middie": "^8.3.0",
"@fastify/swagger": "^8.5.1",
"@fastify/swagger-ui": "^1.9.0",
"@lexical/headless": "^0.11.1",
"@lexical/html": "^0.11.1",
"@msgpack/msgpack": "^3.0.0-beta2",
"@next-auth/prisma-adapter": "^1.0.7",
"@prisma/client": "^4.15.0",
"authey": "^0.6.0",
"dotenv": "^16.3.1",
"dotenv-expand": "^10.0.0",
"fastify": "^4.18.0",
"fastify-plugin": "^4.5.0",
"fastify-zod": "^1.3.2",
"helmet": "^7.0.0",
"lexical": "^0.11.1",
"linkedom": "^0.14.26",
"linkedom-global": "^1.0.0",
"zod": "^3.21.4"
},
"devDependencies": {
"@yarnpkg/pnpify": "4.0.0-rc.45",
"pino-pretty": "^10.0.0",
"prisma": "^4.15.0",
"rimraf": "^5.0.1",
"standard": "^17.1.0",
"typescript": "^5.1.3"
}
}