This repository has been archived by the owner on Dec 15, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
97 lines (97 loc) · 3.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "@prisma/templates",
"version": "0.0.0-dripip",
"repository": "git@github.com:prisma/templates-node.git",
"author": "Prisma Data Inc.",
"license": "MIT",
"files": [
"dist-cjs",
"dist-esm"
],
"main": "./dist-cjs/index.js",
"module": "./dist-esm/index.js",
"scripts": {
"format": "yarn format:prettier",
"format:prettier": "prettier --write .",
"format:check": "yarn -s format:check:prettier",
"format:check:prettier": "prettier --check .",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"type-check": "yarn -s tsc --noEmit",
"dev": "yarn -s clean && tsc --build --watch",
"dev:gen": "nodemon --watch generator --ext ts --exec 'yarn -s build:gen:generate-type-script'",
"build": "yarn -s clean && yarn build:gen && yarn build:ts",
"test:db:up": "docker-compose up --detach",
"build:ts": "yarn build:ts:cjs && yarn build:ts:esm",
"build:ts:cjs": "tsc --project tsconfig.cjs.json",
"build:ts:esm": "tsc --project tsconfig.esm.json",
"build:gen": "yarn -s ts-node generator/cli --generate-type-script --generate-migration-scripts",
"build:gen:generate-type-script": "yarn -s ts-node generator/cli --generate-type-script",
"build:gen:generate-migration-scripts": "yarn -s ts-node generator/cli --generate-migration-scripts",
"test": "jest",
"test:unit": "yarn -s test --testPathIgnorePatterns e2e",
"test:e2e": "yarn -s test e2e",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache",
"release:pr": "dripip pr",
"release:canary": "dripip preview",
"release:stable": "dripip stable",
"prepublishOnly": "yarn -s build",
"prepare": "ts-patch install -s"
},
"dependencies": {
"@prisma-spectrum/reflector": "0.15.4",
"faker": "5.5.3",
"lodash": "^4.17.21",
"remeda": "^0.0.35",
"tslib": "^2.3.1",
"zod": "^3.17.3"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@prisma/client": "4.4.0",
"@prisma/internals": "4.4.0",
"@supercharge/promise-pool": "2.3.0",
"@swc/core": "1.2.203",
"@swc/helpers": "0.4.1",
"@swc/jest": "0.2.21",
"@types/jest": "27.5.2",
"@types/lodash": "4.14.182",
"@types/node": "17.0.25",
"@types/pg": "8.6.5",
"@typescript-eslint/eslint-plugin": "5.28.0",
"@typescript-eslint/parser": "5.28.0",
"arg": "5.0.2",
"dripip": "0.10.0",
"endent": "2.1.0",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-only-warn": "1.0.3",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.16",
"execa": "5.1.1",
"fast-glob": "3.2.11",
"floggy": "0.3.2",
"fs-jetpack": "4.3.1",
"jest": "27.5.1",
"jest-watch-select-projects": "2.0.0",
"jest-watch-suspend": "1.1.2",
"jest-watch-typeahead": "1.1.0",
"konn": "0.7.0",
"nodemon": "2.0.16",
"prettier": "2.7.0",
"prisma": "4.4.0",
"regenerator-runtime": "0.13.9",
"strip-ansi": "6.0.1",
"ts-jest": "27.1.5",
"ts-node": "10.8.1",
"ts-patch": "2.0.1",
"type-fest": "2.13.1",
"typescript": "4.7.3",
"typescript-snapshots-plugin": "1.7.0",
"typescript-transform-paths": "3.3.1"
},
"peerDependencies": {
"@prisma/client": "*",
"@prisma/internals": "*"
}
}