-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
79 lines (79 loc) · 2.29 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": "factory-girl-ts",
"version": "2.3.1",
"description": "A factory library to help creating test data",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 18.16.0"
},
"files": [
"lib/**/*"
],
"scripts": {
"check": "npm-check -s -u",
"test": "vitest run --config ./vitest.config.ts",
"test:watch": "vitest --config ./vitest.config.ts",
"test:e2e": "vitest run --config ./vitest.e2e.config.ts",
"test:e2e:watch": "vitest --config ./vitest.e2e.config.ts",
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"prepublishOnly": "npm test && npm run lint",
"preversion": "dc up -d && npm run test:e2e",
"version": "npm run prettier && git add -A src",
"postversion": "git push && git push --tags",
"prepare": "husky install && npm run build",
"typecheck": "tsc --noEmit -p tsconfig.build.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thiagomini/factory-girl-ts.git"
},
"keywords": [
"test",
"factory"
],
"author": "Thiago Ribeiro Valentim Martins",
"license": "ISC",
"bugs": {
"url": "https://github.com/thiagomini/factory-girl-ts/issues"
},
"homepage": "https://github.com/thiagomini/factory-girl-ts#readme",
"devDependencies": {
"@faker-js/faker": "7.6.0",
"@mikro-orm/core": "^5.9.2",
"@mikro-orm/postgresql": "^5.9.2",
"@types/lodash": "^4.14.199",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.50.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-eslint-comments": "3.2.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.9",
"npm-check": "^6.0.1",
"pg": "^8.11.3",
"pg-hstore": "2.3.4",
"prettier": "^3.0.3",
"reflect-metadata": "0.1.13",
"rimraf": "^5.0.1",
"sequelize": "^6.33.0",
"type-fest": "^4.3.1",
"typeorm": "^0.3.17",
"typescript": "5.0.4",
"vitest": "0.34.6"
},
"dependencies": {
"class-transformer": "0.5.1",
"deepmerge": "^4.3.1",
"lodash": "4.17.21"
}
}