generated from nestdotland/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 966 Bytes
/
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
{
"name": "db",
"description": "This repository is used to manage Nest's DB migrations",
"repository": "https://github.com/nestdotland/db",
"author": "Maximous Black <[email protected]>",
"license": "MIT",
"private": true,
"scripts": {
"ts": "ts-node",
"prisma": "prisma",
"studio": "prisma studio",
"push": "prisma db push",
"seed": "ts-node ./src/seed.ts",
"test": "ts-node ./src/test.ts",
"dump": "./dump.sh",
"fmt": "prettier --check .",
"fmt:fix": "prettier --write ."
},
"devDependencies": {
"@types/mime": "^2.0.3",
"@types/node": "^17.0.21",
"nanoid": "^3.3.1",
"prettier": "^2.5.1",
"pretty-bytes": "^6.0.0",
"prisma": "^3.10.0",
"ts-node": "^10.7.0",
"typescript": "^4.6.2"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@prisma/client": "^3.10.0",
"mime": "^3.0.0"
}
}