-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
50 lines (50 loc) · 1.45 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
{
"name": "podverse-orm",
"version": "1.0.0",
"description": "Object relational mapping library for connecting a Postgres database to Podverse apps",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"dev:watch": "nodemon --watch 'src' --watch $(realpath node_modules/podverse-external-services) --watch $(realpath node_modules/podverse-shared) -x \"npm run build\"",
"build": "tsc",
"lint": "eslint ./src --ext .ts",
"lint-fix": "eslint --fix",
"prepare": "npm run build"
},
"files": [
"/dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/podverse/podverse-orm.git"
},
"license": "AGPLv3",
"bugs": {
"url": "https://github.com/podverse/podverse-orm/issues"
},
"homepage": "https://github.com/podverse/podverse-orm#readme",
"devDependencies": {
"@types/node": "^20.10.4",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"nodemon": "^3.0.2",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
},
"dependencies": {
"axios": "1.6.0",
"bcryptjs": "^2.4.3",
"class-validator": "0.14.0",
"http-errors": "^1.7.3",
"manticoresearch": "^2.0.3",
"password-validator": "5.0.3",
"pg": "8.7.3",
"podverse-external-services": "^1.0.0",
"podverse-shared": "^4.15.3",
"reflect-metadata": "0.1.13",
"shortid": "2.2.15",
"sqlstring": "2.3.3",
"typeorm": "0.2.45"
}
}