-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.29 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
62
{
"name": "animus",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start:dev": "prisma migrate deploy && prisma generate && npx nodemon",
"build": "rimraf ./dist && tsc",
"start:prod": "node dist/index.js",
"start:migrate:prod": "prisma migrate deploy && npm run start:prod",
"docker:restart-db-consumers": "docker-compose restart rest && docker-compose restart worker",
"prisma:dev:migrate": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres prisma migrate dev && npm run docker:restart-db-consumers",
"prisma:dev:seed": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres prisma db seed",
"prisma:dev:apply": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres prisma migrate deploy",
"prisma:dev:studio": "cross-env DATABASE_URL=postgresql://postgres:postgres@localhost:5432/postgres prisma studio",
"lint": "eslint --ext .js,.ts .",
"format": "prettier --ignore-path .gitignore --write \"**/*.+(js|ts|json)\""
},
"prisma": {
"schema": "./prisma/schema.prisma",
"seed": "ts-node prisma/seed.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.3.0",
"@fastify/type-provider-typebox": "^2.4.0",
"@fastify/websocket": "^8.2.0",
"@prisma/client": "^5.2.0",
"@sinclair/typebox": "^0.25.21",
"axios": "^1.5.0",
"consola": "^2.15.3",
"dockerode": "^3.3.4",
"fastify": "^4.16.0",
"fastify-decorators": "^3.15.0",
"ioredis": "^5.3.1",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@types/dockerode": "^3.3.14",
"@types/node": "^18.11.18",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.50.0",
"@typescript-eslint/parser": "^5.50.0",
"cross-env": "^7.0.3",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"nodemon": "2.0.20",
"prettier": "2.8.3",
"prisma": "^5.2.0",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}