-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.47 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
{
"name": "@nexys/fetchr",
"type": "module",
"version": "0.14.2",
"license": "AGPL-3.0-or-later",
"main": "dist/index.js",
"files": [
"dist/*",
"README.md"
],
"author": "Nexys",
"repository": {
"type": "git",
"url": "https://github.com/nexys-system/fetch-r/"
},
"devDependencies": {
"@types/jest": "^26.0.22",
"@types/jsonwebtoken": "^8.5.1",
"@types/koa": "^2.13.1",
"@types/koa-mount": "^4.0.0",
"@types/koa-router": "^7.4.1",
"@types/node": "^20.12.12",
"dotenv": "^16.4.5",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"koa": "^2.13.1",
"koa-body": "^4.2.0",
"koa-mount": "^4.0.0",
"koa-router": "^10.0.0",
"ts-jest": "^29.1.2",
"tsc-watch": "^4.2.9",
"typescript": "^5.5.3"
},
"dependencies": {
"@nexys/validation": "^2.1.5",
"@types/graphql-fields": "^1.3.4",
"@types/pg": "^8.10.2",
"@types/sqlstring": "^2.3.0",
"crc-32": "^1.2.2",
"graphql": "^16.5.0",
"graphql-fields": "^2.0.3",
"mysql2": "^3.10.2",
"pg": "^8.11.3",
"sqlstring": "^2.3.3"
},
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"buildPackage": "rm -rf ./dist;tsc -p tsconfig.package.json",
"test": "rm -rf dist && TZ=UTC jest",
"watch": "tsc-watch --onSuccess \"node ./dist/index.js\""
},
"keywords": [
"mysql",
"typescript",
"orm",
"npm-package",
"mysql-database",
"typesafe",
"orm-framework",
"migration-tool"
]
}