-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
42 lines (42 loc) · 1.01 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
{
"name": "nestjs-seeder",
"version": "0.3.2",
"description": "An extension library for NestJS to perform seeding.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "lib"
},
"scripts": {
"build": "tsc",
"prebuild": "rimraf dist",
"dev": "npm run prebuild && tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edwardanthony/nestjs-seeder"
},
"bugs": "https://github.com/edwardanthony/nestjs-seeder/issues",
"homepage": "https://github.com/edwardanthony/nestjs-seeder#readme",
"keywords": [
"seeding",
"seeder",
"seed",
"nestjs",
"seeder"
],
"author": "Edward Anthony <[email protected]>",
"license": "MIT",
"peerDependencies": {
"@faker-js/faker": "^8.0.0"
},
"devDependencies": {
"@nestjs/common": "^9.4.0",
"@nestjs/core": "^9.4.0",
"@types/node": "^20.1.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.0",
"rxjs": "^7.8.1",
"typescript": "^5.0.4"
}
}