-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
73 lines (73 loc) · 2.3 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
{
"name": "typeorm-seeding",
"version": "1.6.2",
"description": "🌱 A delightful way to seed test data into your database.",
"license": "MIT",
"author": "Gery Hirschfeld <[email protected]> (https://github.com/hirsch88)",
"main": "dist/typeorm-seeding.js",
"types": "dist/typeorm-seeding.d.ts",
"bin": {
"typeorm-seeding": "dist/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/w3tecch/typeorm-seeding.git"
},
"scripts": {
"build": "tsc --project ./tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"format:ci": "prettier --check \"src/**/*.ts\" \"sample/**/*.ts\"",
"lint": "eslint \"src/**/*.ts\" \"sample/**/*.ts\" --fix",
"lint:ci": "eslint \"src/**/*.ts\" \"sample/**/*.ts\"",
"prebuild": "rimraf dist",
"semantic-release": "semantic-release",
"schema:drop": "ts-node ./node_modules/typeorm/cli.js schema:drop -c sample",
"schema:log": "ts-node ./node_modules/typeorm/cli.js schema:log -c sample",
"schema:sync": "ts-node ./node_modules/typeorm/cli.js schema:sync -c sample",
"seed:run": "ts-node ./dist/cli.js seed -c sample",
"seed:config": "ts-node ./dist/cli.js config -c sample",
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@semantic-release/git": "^9.0.0",
"@types/bcryptjs": "^2.4.2",
"@types/chalk": "^2.2.0",
"@types/faker": "^5.5.8",
"@types/glob": "7.1.1",
"@types/jest": "^25.2.1",
"@types/node": "13.11.1",
"@types/yargs": "^15.0.4",
"@typescript-eslint/eslint-plugin": "^2.27.0",
"@typescript-eslint/parser": "^2.27.0",
"bcryptjs": "^2.4.3",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.3.0",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"semantic-release": "^17.0.4",
"sqlite": "^4.0.6",
"sqlite3": "^4.1.1",
"ts-jest": "^25.3.1",
"typeorm": "^0.2.24",
"typescript": "^3.8.3"
},
"dependencies": {
"chalk": "^4.0.0",
"faker": "5.5.3",
"glob": "7.1.6",
"ora": "4.0.3",
"reflect-metadata": "0.1.13",
"yargs": "15.3.1"
},
"peerDependencies": {
"typeorm": "^0.2.24"
},
"resolutions": {
"mem": ">=4.0.0"
}
}