-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
64 lines (64 loc) · 1.67 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
{
"name": "@sora-soft/database-component",
"version": "1.6.3",
"description": "",
"main": "dist/index.js",
"scripts": {
"build": "rimraf ./dist && ttsc",
"prepublishOnly": "npm run build",
"preversion": "lint-staged && npm run build",
"prepare": "husky install",
"preCommit": "lint-staged"
},
"repository": "git@github.com/sora-soft/database-component.git",
"type": "module",
"exports": {
".": "./dist/index.js",
"./typeorm": {
"import": "./dist/typeorm.js",
"types": "./dist/typeorm.d.ts"
}
},
"author": "yaya",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/sora-soft/database-component/issues"
},
"homepage": "https://github.com/sora-soft/database-component#readme",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"eslint"
]
},
"dependencies": {
"@sora-soft/framework": "^1.10.4",
"@sora-soft/type-guard": "^1.1.0",
"mysql2": "^2.2.5",
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.11"
},
"devDependencies": {
"@types/assert": "^1.5.4",
"@types/expect": "^24.3.0",
"@types/mocha": "^8.2.2",
"@types/node": "^18.12.1",
"@typescript-eslint/eslint-plugin": "^5.54.0",
"@typescript-eslint/parser": "^5.54.0",
"eslint": "^8.35.0",
"eslint-plugin-file-extension-in-import-ts": "^1.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsdoc": "^40.0.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-unused-imports": "^2.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"rimraf": "^3.0.2",
"typescript": "^4.9.0",
"ttypescript": "^1.5.15"
}
}