-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.27 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
{
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "tsc",
"lint": "eslint \"src\"",
"start": "dotenv -c '.env' -- node dist/app",
"debug": "dotenv -c '.env' -- node --inspect-brk=9241 dist/app",
"db:push": "npx prisma db push",
"db:seed": "npx prisma db seed",
"db:studio": "npx prisma studio"
},
"dependencies": {
"@adminjs/fastify": "^4.1.0",
"@adminjs/prisma": "^5.0.1",
"@adminjs/themes": "^1.0.1",
"@fastify/session": "^10.1.1",
"@prisma/client": "^5.6.0",
"adminjs": "^7.7.2",
"fastify": "^4.24.3",
"pg": "latest"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.58.0",
"@typescript-eslint/parser": "^5.58.0",
"dotenv-cli": "^7.2.1",
"eslint": "^8.38.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.1.0",
"prisma": "^5.6.0",
"tslib": "^2.5.0",
"tsx": "^4.19.2",
"typescript": "^5.0.4"
},
"name": "test",
"prisma": {
"schema": "prisma/schema.prisma",
"seed": "tsx prisma/seed.ts"
}
}