-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
package.json
File metadata and controls
85 lines (85 loc) · 2.14 KB
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
84
85
{
"name": "optimus-package",
"version": "1.0.0",
"description": "",
"private": true,
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"./entities": {
"require": "./dist/entities/index.cjs",
"import": "./dist/entities/index.mjs",
"types": "./dist/entities/index.d.ts"
},
"./entities/*": {
"require": "./dist/entities/*.cjs",
"import": "./dist/entities/*.mjs",
"types": "./dist/entities/*.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "eslint .",
"lint:fix": "npm run format && eslint --fix .",
"format": "prettier --write .",
"makemigrations": "mikro-orm migration:create",
"migrate": "mikro-orm migration:up",
"migrate:down": "mikro-orm migration:down",
"prepare": "husky && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FiestaTheNewbieDev/optimus-package.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/FiestaTheNewbieDev/optimus-package/issues"
},
"homepage": "https://github.com/FiestaTheNewbieDev/optimus-package#readme",
"dependencies": {
"@mikro-orm/migrations": "^6.6.7",
"dotenv": "^17.2.3"
},
"peerDependencies": {
"@mikro-orm/core": "^6.6.7",
"@mikro-orm/postgresql": "^6.6.7",
"pg": "^8.16.3"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@mikro-orm/cli": "^6.6.7",
"@types/node": "^25.0.2",
"@types/pg": "^8.16.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"prettier-plugin-organize-imports": "^4.3.0",
"ts-node": "^10.9.2",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.50.0"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --fix"
],
"*.{json,md,yml,yaml}": [
"prettier --write"
]
}
}