forked from jorgebodega/typeorm-seeding
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.25 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
{
"name": "@jorgebodega/typeorm-seeding",
"version": "5.0.1",
"keywords": [
"typeorm",
"seed",
"seeding",
"orm"
],
"description": "🌱 A delightful way to seed test data into your database.",
"license": "MIT",
"author": "Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)",
"contributors": [
"Jorge Bodega <[email protected]> (https://github.com/jorgebodega)"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"typeorm-seeding": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgebodega/typeorm-seeding.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"format": "prettier --write \"{src,test}/**/*.ts\"",
"format:ci": "prettier --check \"{src,test}/**/*.ts\"",
"lint": "eslint \"{src,test}/**/*.ts\"",
"lint:fix": "pnpm lint --fix",
"lint:ci": "pnpm lint",
"prebuild": "rimraf dist",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop",
"schema:log": "ts-node ./node_modules/typeorm/cli.js schema:log",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync",
"seed:run": "ts-node ./src/cli.ts seed",
"seed:config": "ts-node ./src/cli.ts config",
"test": "jest",
"test:ci": "jest --silent",
"test:cov": "jest --coverage --silent",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@faker-js/faker": "7.4.0",
"@tsconfig/node16": "1.0.3",
"@types/glob": "7.2.0",
"@types/jest": "28.1.7",
"@types/node": "18.7.6",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"rimraf": "3.0.2",
"sqlite3": "5.0.11",
"ts-jest": "28.0.8",
"ts-node": "10.9.1",
"typeorm": "0.3.7",
"typescript": "4.7.4"
},
"dependencies": {
"chalk": "4.1.2",
"glob": "8.0.3",
"ora": "5.4.1",
"reflect-metadata": "0.1.13",
"tslib": "2.4.0",
"yargs": "17.5.1"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"engines": {
"node": ">=14"
}
}