-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.81 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@flypapertech/scribe",
"version": "0.11.6",
"description": "Database modeling services.",
"exports": "./dist/scribe.cli.js",
"type": "module",
"engines": {
"node": ">=14.16"
},
"bin": {
"scribe": "./dist/scribe.cli.js"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "rm -rf dist; node_modules/.bin/tsc --project .; cp ./src/default.table.schema.json ./dist/default.table.schema.json",
"test": "TS_NODE_TRANSPILE_ONLY=1 node_modules/.bin/mocha",
"start": "node_modules/.bin/ts-node src/scribe.cli.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/flypapertech/scribe.git"
},
"author": "Logikgate",
"license": "MIT",
"bugs": {
"url": "https://github.com/flypapertech/scribe/issues"
},
"homepage": "https://github.com/flypapertech/scribe#readme",
"dependencies": {
"@aws-sdk/rds-signer": "^3.691.0",
"@redis/client": "^1.2.0",
"ajv": "6.12.6",
"cluster": "^0.7.7",
"diff-match-patch": "^1.0.1",
"dotenv": "^16.4.5",
"express": "4.19.2",
"express-bunyan-logger": "1.2.0",
"luxon": "3.4.4",
"mkdirp": "3.0.1",
"node-fetch": "3.3.2",
"pg-promise": "10.15.4",
"pgtools": "1.0.1",
"pluralize": "8.0.0",
"redis": "4.6.13",
"sqlstring": "2.3.3",
"url-join": "5.0.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/chai": "4.3.3",
"@types/chai-http": "4.2.0",
"@types/diff-match-patch": "^1.0.32",
"@types/express": "4.17.13",
"@types/express-serve-static-core": "^4.17.30",
"@types/lodash": "^4.14.117",
"@types/luxon": "3.4.2",
"@types/mkdirp": "2.0.0",
"@types/mocha": "9.1.1",
"@types/node": "^16.11.7",
"@types/pg": "^8.11.2",
"@types/pluralize": "0.0.29",
"@types/request": "^2.47.1",
"@types/serve-static": "^1.15.0",
"@types/url-join": "4.0.0",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "5.33.1",
"@typescript-eslint/parser": "5.33.1",
"chai": "4.3.6",
"chai-http": "4.3.0",
"eslint": "8.22.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-jsdoc": "39.3.6",
"eslint-plugin-mocha": "8.0.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-sort-class-members": "1.14.1",
"mocha": "10.0.0",
"prettier": "2.7.1",
"prettier-eslint": "15.0.1",
"should": "^13.2.3",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"uglify-es": "3.3.9"
}
}