-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.05 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
{
"name": "poc-consistent-hashing",
"version": "1.0.0",
"description": "",
"main": "./dist/index.js",
"scripts": {
"start": "bash ./bin/start.sh",
"migrate-gen": "npx prisma migrate dev --name '_mg' --create-only",
"migrate-run": "npx prisma migrate deploy",
"db-pull": "npx prisma db pull",
"db-show": "npx prisma studio",
"db-map": "npx prisma generate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ace-cooper/poc-consistent-hashing.git"
},
"author": "Hugo Fagundes",
"license": "ISC",
"bugs": {
"url": "https://github.com/ace-cooper/poc-consistent-hashing/issues"
},
"homepage": "https://github.com/ace-cooper/poc-consistent-hashing#readme",
"devDependencies": {
"@types/node": "^18.16.3",
"prisma": "^4.14.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@prisma/client": "^4.14.0",
"@types/express": "^4.17.17",
"cls-hooked": "^4.2.2",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"redis": "^4.6.6",
"ulid": "^2.3.0"
}
}