-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
119 lines (119 loc) · 3.87 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"name": "tell-me-everything-api",
"description": "Just Tell to Me. I will keep your secret.",
"version": "0.1.0",
"homepage": "https://tell-me-everything.herokuapp.com/",
"main": "src",
"license": "MIT",
"keywords": [
"feathers"
],
"author": {
"name": "Bervianto Leo Pratama",
"email": "bervianto.leo@gmail.com",
"url": "https://berviantoleo.my.id"
},
"contributors": [
{
"email": "bervianto.leo@gmail.com",
"name": "Bervianto Leo Pratama",
"url": "https://berviantoleo.my.id"
}
],
"maintainers": [
{
"email": "bervianto.leo@gmail.com",
"name": "Bervianto Leo Pratama",
"url": "https://berviantoleo.my.id"
}
],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^20.0.0 || ^22.0.0",
"yarn": ">= 0.18.0"
},
"scripts": {
"test": "jest --forceExit",
"dev": "ts-node-dev --no-notify src/",
"start": "yarn run compile && cross-env NODE_ENV=production node lib/",
"start:prod": "cross-env NODE_ENV=production node lib/",
"start:linux": "NODE_ENV=production node lib/",
"lint": "eslint . --ext .json,.ts,.md",
"fix-lint": "eslint . --ext .json,.ts,.md --quiet --fix",
"compile": "shx rm -rf lib/ && tsc"
},
"types": "lib/",
"dependencies": {
"@aws-sdk/client-ses": "^3.675.0",
"@bervproject/feathers-advance-hook": "^1.1.1",
"@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.11",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.18",
"@line/bot-sdk": "^9.4.1",
"argon2": "^0.41.1",
"azure-cognitiveservices-websearch": "^2.0.0",
"cls-hooked": "^4.2.2",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto-js": "^4.2.0",
"feathers-authentication-hooks": "^1.0.2",
"feathers-hooks-common": "^6.1.5",
"feathers-mongodb": "^6.4.1",
"feathers-permissions": "^2.1.4",
"feathers-sequelize": "^6.4.0",
"helmet": "^8.0.0",
"mongodb": "^6.9.0",
"mongodb-core": "^3.2.7",
"ms-rest-azure": "^3.0.2",
"nodemailer": "^6.9.15",
"pg": "^8.13.0",
"sequelize": "^6.37.4",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2",
"winston": "^3.15.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/bluebird": "^3.5.42",
"@types/cls-hooked": "^4.3.8",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/crypto-js": "^4.2.2",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.13",
"@types/jsonwebtoken": "^9.0.7",
"@types/mongodb": "^4.0.7",
"@types/node": "^22.7.9",
"@types/nodemailer": "^6.4.16",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^8.3.4",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"axios": "^1.7.7",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-markdown": "^3.0.1",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.6.3"
},
"packageManager": "yarn@1.22.19"
}