-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.88 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": "traefik-config-api",
"version": "0.0.1",
"private": true,
"description": "An api config provider for Traefik",
"repository": {
"type": "git",
"url": "https://github.com/taos15/traefik-http-api.git"
},
"main": "dist/index.js",
"scripts": {
"dev": "ts-node-dev --poll src/index.ts",
"build": "tsc",
"start": "pnpm run build && console-ninja node dist/index.js",
"start:ts": "rimraf ./dist && tsc --watch",
"start:watch": "nodemon dist/index.js",
"ts:watch": "ts-node-dev src/index.ts",
"start:watch-kill": "lsof -ti :4000 | xargs kill -9 && nodemon dist/index.js",
"prisma:init": "prisma migrate dev --name init && prisma generate",
"start:dev": "concurrently \"pnpm run start:ts\" \"pnpm run start:watch\"",
"start:ninja": " console-ninja pnpm run ts:watch",
"prisma:seed": "ts-node-dev src/db/seed.ts",
"prisma:generate": "prisma generate",
"prisma:db:deploy": "prisma db push",
"prisma:migrate": "prisma migrate deploy"
},
"keywords": [],
"author": "Taos15",
"license": "MIT",
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/dockerode": "^3.3.19",
"@types/express": "^4.17.17",
"@types/js-yaml": "^4.0.5",
"@types/morgan": "^1.9.4",
"@types/node": "^20.4.5",
"concurrently": "^8.2.0",
"nodemon": "^3.0.1",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"tsx": "^3.12.7",
"typescript": "^5.1.6"
},
"dependencies": {
"@prisma/client": "^5.0.0",
"cors": "^2.8.5",
"dockerode": "^3.3.5",
"dotenv": "^16.3.1",
"express": "^4.19.2",
"js-yaml": "^4.1.0",
"morgan": "^1.10.0",
"prisma": "^5.0.0",
"zod": "^3.21.4"
}
}