-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
100 lines (100 loc) · 2.66 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
98
99
100
{
"name": "@hyperjumptech/prisma-seeder",
"version": "0.0.9",
"description": "CLI tool to easily seed database from a prisma schema file",
"author": "@hyperjumptech",
"bin": {
"prisma-seeder": "./bin/run"
},
"homepage": "https://github.com/hyperjumptech/prisma-seeder",
"license": "MIT",
"main": "dist/index.js",
"repository": "hyperjumptech/prisma-seeder",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@oclif/core": "^2.6.2",
"@oclif/plugin-help": "^5",
"@oclif/plugin-plugins": "^2.4.1",
"@prisma/client": "4.11.0",
"concurrently": "^7.6.0",
"dotenv": "^16.0.3",
"prisma": "4.11.0",
"prisma-json-schema-generator": "^3.1.3",
"uuid": "^9.0.0",
"wait-port": "^1.0.4"
},
"devDependencies": {
"@oclif/test": "^2.3.10",
"@types/chai": "^4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.0",
"@types/uuid": "^9.0.1",
"chai": "^4",
"eslint": "^8.36.0",
"eslint-config-oclif": "^4",
"eslint-config-oclif-typescript": "^1.0.3",
"eslint-config-prettier": "^8.7.0",
"mocha": "^9",
"oclif": "^3",
"pkg": "^5.8.1",
"prettier": "^2.8.4",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"oclif": {
"bin": "prisma-seeder",
"dirname": "prisma-seeder",
"commands": "./dist/commands",
"default": ".",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins"
],
"topicSeparator": " ",
"topics": {
"prisma-seeder": {
"description": "Seeding prisma backed database"
}
}
},
"scripts": {
"build": "shx rm -rf dist && tsc -b",
"lint": "eslint . --ext .ts --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "npm build && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"pkg": "npm run prepack && pkg . --compress brotli",
"version": "oclif readme && git add README.md",
"startdbdev": "cp env.example .env && cd dev && mkdir -p data && docker-compose up",
"prismamigrate": "npx prisma migrate dev --schema ./schema.example.prisma",
"dbsetup": "concurrently \"npm run startdbdev\" \"wait-port localhost:5432 && npm run prismamigrate\""
},
"pkg": {
"scripts": [
"./lib/**/*.js"
],
"targets": [
"node14-linux-x64"
],
"outputPath": "dist"
},
"engines": {
"node": ">=12.0.0"
},
"bugs": "https://github.com/hyperjumptech/prisma-seeder/issues",
"keywords": [
"oclif"
],
"types": "dist/index.d.ts"
}