-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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": "prisma-aurora",
"version": "1.3.9",
"bin": {
"aurora": "lib/index.js"
},
"description": "CLI tool that orchestrates prisma files in a way that allows multiple .prisma files with cross-relations",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node 'src/index.ts'",
"create": "npm run build && npm run test",
"build": "tsc",
"prepack": "npm run build",
"refresh": "rm -rf ./node_modules ./package-lock.json && npm install",
"test": "jest",
"test-output": "jest -- ./src/tests/aurora.test.ts",
"test-watch": "jest --watch",
"prettier-format": "prettier --config .prettierrc 'src/**/*.ts' --write"
},
"keywords": [
"prisma",
"schema",
"merge",
"cli"
],
"author": "Sabin Adams",
"license": "ISC",
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/jest": "^27.0.3",
"@types/node": "^17.0.14",
"jest": "^27.4.4",
"nodemon": "^2.0.15",
"prettier": "^2.5.1",
"prisma": "^3.7.0",
"ts-jest": "^27.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.5.3"
},
"dependencies": {
"@prisma/client": "^3.14.0",
"@prisma/sdk": "^3.14.0",
"commander": "^9.2.0",
"glob": "^8.0.3",
"path": "^0.12.7"
}
}