forked from w3tecch/typeorm-seeding
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
83 lines (83 loc) · 2.5 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
{
"name": "@concepta/typeorm-seeding",
"version": "4.0.0",
"description": "A simple but powerful database seeder for TypeORM ^0.3.0",
"license": "MIT",
"author": "Concepta (https://github.com/conceptadev)",
"contributors": [
"Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)",
"Jorge Bodega <[email protected]> (https://github.com/jorgebodega)"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/cli.js",
"repository": {
"type": "git",
"url": "https://github.com/conceptadev/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": "yarn lint --fix",
"lint:ci": "yarn lint",
"prebuild": "rimraf dist",
"prepublish": "yarn build",
"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.0.0",
"@semantic-release/changelog": "6.0.1",
"@semantic-release/git": "10.0.1",
"@tsconfig/node16": "1.0.2",
"@types/bcryptjs": "2.4.2",
"@types/chalk": "2.2.0",
"@types/faker": "5.5.9",
"@types/glob": "7.2.0",
"@types/jest": "27.4.0",
"@types/node": "16.11.19",
"@types/yargs": "17.0.8",
"@typescript-eslint/eslint-plugin": "5.9.0",
"@typescript-eslint/parser": "5.9.0",
"bcryptjs": "2.4.3",
"eslint": "8.6.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.25.4",
"jest": "27.4.7",
"prettier": "2.5.1",
"rimraf": "3.0.2",
"semantic-release": "18.0.1",
"sqlite3": "5.0.2",
"ts-jest": "27.1.2",
"ts-node": "10.4.0",
"typeorm": "0.3.6",
"typescript": "4.5.4"
},
"dependencies": {
"chalk": "^4",
"glob": "^7.2.0",
"ora": "^5",
"reflect-metadata": "^0.1.13",
"yargs": "^17.3.0"
},
"peerDependencies": {
"typeorm": "^0.3.0"
},
"resolutions": {
"mem": ">=4.0.0"
},
"engines": {
"node": ">=14"
},
"packageManager": "[email protected]"
}