-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
84 lines (84 loc) · 2.23 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
{
"name": "restify-orm-scaffold",
"version": "0.0.57",
"description": "Sample REST API scaffold built on Node.JS in TypeScript with restify and TypeORM (with Waterline and Sequelize support also).",
"keywords": [
"restify",
"typeorm",
"sequelize",
"waterline",
"typescript"
],
"homepage": "https://github.com/SamuelMarks/restify-orm-scaffold#readme",
"bugs": "https://github.com/SamuelMarks/restify-orm-scaffold/issues",
"license": "(Apache-2.0 OR MIT)",
"author": "Samuel Marks @SamuelMarks",
"main": "main.js",
"repository": {
"type": "git",
"url": "https://github.com/SamuelMarks/restify-orm-scaffold"
},
"scripts": {
"with_bunyan": "node main.js | bunyan",
"start": "node main.js",
"test": "tsx --test test/api/**/test_*.ts",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude": [
"**/*.d.ts"
],
"reporter": [
"html"
],
"all": true
},
"dependencies": {
"@offscale/custom-restify-errors": "^0.0.21",
"@offscale/nodejs-utils": "^0.0.28",
"@offscale/orm-mw": "0.0.29",
"@offscale/restify-validators": "^0.0.19",
"@offscale/routes-merger": "^0.0.23",
"argon2": "0.41.1",
"async": "^3.2.6",
"bunyan": "^1.8.15",
"ioredis": "^5.4.1",
"pg": "^8.13.0",
"redis": "^4.7.0",
"reflect-metadata": "^0.2.2",
"restify": "^11.1.0",
"restify-errors": "^8.0.2",
"tslib": "^2.8.0",
"tv4": "^1.3.0",
"typeorm": "^0.3.20",
"uuid": "^10.0.0"
},
"devDependencies": {
"@faker-js/faker": "^9.0.3",
"@types/async": "^3.2.24",
"@types/bunyan": "1.8.11",
"@types/connect": "^3.4.38",
"@types/express": "^5.0.0",
"@types/ioredis": "5.0.0",
"@types/node": "^22.7.6",
"@types/redis": "^4.0.11",
"@types/restify": "^8.5.12",
"@types/restify-errors": "^4.3.9",
"@types/superagent": "^8.1.9",
"@types/supertest": "^6.0.2",
"@types/tv4": "^1.2.33",
"@types/uuid": "^10.0.0",
"ajv": "^8.17.1",
"coveralls": "^3.1.1",
"nyc": "^17.1.0",
"source-map-support": "^0.5.21",
"supertest": "^7.0.0",
"ts-node": "^10.9.2",
"tsx": "^4.19.1",
"typescript": "~5.6.3"
}
}