-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.05 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
{
"name": "root",
"private": true,
"workspaces": [
"packages/*",
"examples/*"
],
"scripts": {
"build": "yarn run compile",
"compile": "yarn workspace mikro-orm-find-dataloader run build",
"test": "yarn workspace mikro-orm-find-dataloader run test",
"version": "yarn changeset version && yarn install --immutable",
"release": "yarn run compile && yarn changeset publish",
"postinstall": "husky install"
},
"version": "1.0.0",
"description": "Additional dataloaders for MikroORM",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/darkbasic/mikro-orm-dataloaders.git",
"author": "Niccolò Belli <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"devDependencies": {
"@changesets/changelog-github": "^0.5.0",
"@changesets/cli": "^2.27.1",
"@types/eslint": "^8.56.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.13",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.6.3",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-promise": "^6.1.1",
"husky": "^9.0.7",
"jest": "^29.7.0",
"lint-staged": "^15.2.1",
"nodemon": "^3.0.3",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"jest": {
"projects": [
"<rootDir>/packages/*"
]
},
"lint-staged": {
"*.{js,jsx}": [
"prettier --write",
"eslint --fix --quiet --config .eslintrc.js --resolve-plugins-relative-to .",
"git add"
],
"*.{ts,tsx}": [
"prettier --write",
"eslint --fix --quiet --config .eslintrc.js --resolve-plugins-relative-to .",
"git add"
],
"*.{scss,scss,css,md,html}": [
"prettier --write",
"git add"
]
}
}