-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.34 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
{
"name": "nodejs-prisma",
"version": "1.0.0",
"description": "API REST with Express using Prisma as ORM and MySQL as DB",
"main": "index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start:dev": "tsc && node --env-file=.env ./dist/app.js",
"dev": "tsc-watch --onSuccess \"node --env-file=.env ./dist/app.js\"",
"create:mysql:db": "npx prisma push db",
"seed:mysql": "node ./dist/utils/prisma/seed.js",
"clean:mysql": "node ./dist/utils/prisma/clean.js",
"seed:mongo": "node --env-file=.env ./dist/utils/mongoose/seed.js",
"clean:mongo": "node --env-file=.env ./dist/utils/mongoose/clean.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imollm/express-prisma.git"
},
"keywords": [
"express",
"apirest",
"mysql",
"orm",
"prisma"
],
"author": "Ivan Moll",
"license": "MIT",
"bugs": {
"url": "https://github.com/imollm/express-prisma/issues"
},
"homepage": "https://github.com/imollm/express-prisma#readme",
"dependencies": {
"@prisma/client": "^5.2.0",
"express": "4.18.2",
"joi": "17.10.1",
"mongoose": "7.5.0"
},
"eslintConfig": {
"extends": "ts-standard"
},
"devDependencies": {
"@types/express": "4.17.17",
"prisma": "5.2.0",
"ts-standard": "12.0.2",
"tsc-watch": "6.0.4",
"typescript": "5.2.2"
}
}