-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
40 lines (40 loc) · 1.3 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
{
"private": true,
"name": "@quramy/prisma-fabbrica-workspaces",
"description": "",
"main": "index.js",
"scripts": {
"clean": "npm run clean --workspaces && rimraf -g \"*.tsbuildinfo\"",
"bootstrap": "npm run build && npm run bootstrap --workspace examples/example-prj",
"build": "npm run build:lib && npm run build:readme",
"build:lib": "tsc -b tsconfig.build.json",
"build:readme": "markdown-toc -i README.md --maxdepth 3 --no-firlsth1 && prettier --write README.md",
"postbuild:lib": "cd node_modules/.bin; rm -f prisma-fabbrica; ln -s ../../packages/prisma-fabbrica/bin.js prisma-fabbrica",
"migrate:test": "npm run migrate:test:ci --workspace examples/example-prj",
"test:ci": "npm run test:ci --workspaces",
"test": "npm run test --workspaces",
"lint": "npm run prettier -- --check",
"format": "npm run prettier -- --write",
"prettier": "prettier ."
},
"keywords": [],
"author": "Quramy",
"license": "MIT",
"devDependencies": {
"@prisma/client": "6.1.0",
"@types/node": "^22.0.0",
"husky": "9.1.7",
"prettier": "3.4.2",
"pretty-quick": "4.0.0",
"prisma": "6.1.0",
"rimraf": "^6.0.0",
"typescript": "5.7.2"
},
"workspaces": [
"packages/*",
"examples/*"
],
"dependencies": {
"markdown-toc": "^1.2.0"
}
}