-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
93 lines (93 loc) · 2.52 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
89
90
91
92
93
{
"name": "room_master_core_api",
"description": "",
"version": "1.0.1",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Soubhik Kumar Gon",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^20.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "yarn run lint && yarn run compile && yarn run mocha",
"lint": "eslint src/. test/. --config .eslintrc.json --ext .ts --fix",
"dev": "ts-node-dev --no-notify src/",
"start": "yarn run compile && node lib/",
"mocha": "mocha --require ts-node/register --require source-map-support/register \"test/**/*.ts\" --recursive --exit",
"compile": "shx rm -rf lib/ && tsc",
"ngrok": "ngrok http --domain=bat-giving-roughy.ngrok-free.app 3030"
},
"standard": {
"env": [
"mocha"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@aws-sdk/client-s3": "^3.525.0",
"@feathersjs/authentication": "^4.5.15",
"@feathersjs/authentication-local": "^4.5.15",
"@feathersjs/authentication-oauth": "^4.5.15",
"@feathersjs/configuration": "^4.5.15",
"@feathersjs/errors": "^4.5.15",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.15",
"@feathersjs/transport-commons": "^5.0.21",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dayjs": "^1.11.10",
"feathers-hooks-common": "6.1.5",
"feathers-mongoose": "^8.5.1",
"helmet": "^5.1.0",
"mongodb-core": "^3.2.7",
"mongoose": "^6.3.6",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.14",
"serve-favicon": "^2.5.0",
"stripe": "^15.9.0",
"twig": "^1.17.1",
"winston": "^3.0.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.11",
"@types/jsonwebtoken": "^9.0.5",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.15",
"@types/serve-favicon": "^2.5.7",
"@types/socket.io-parser": "^3.0.0",
"@types/twig": "^1.12.16",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"axios": "^1.6.7",
"eslint": "^8.17.0",
"jest": "^29.7.0",
"shx": "^0.3.4",
"ts-jest": "^29.1.2",
"ts-node-dev": "^2.0.0",
"typescript": "^4.7.3"
},
"volta": {
"node": "20.16.0",
"yarn": "1.22.22"
}
}