-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.59 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": "my-personal-web-api",
"description": "Web API for Bervianto's Web",
"version": "0.0.5",
"homepage": "https://bervianto-web-api.herokuapp.com",
"main": "src",
"license": "MIT",
"keywords": [
"feathers"
],
"author": {
"name": "Bervianto Leo Pratama",
"email": "bervianto.leo@gmail.com"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^20.0.0 || ^22.0.0",
"npm": ">=3.0.0"
},
"scripts": {
"test": "jest --forceExit",
"dev": "ts-node-dev --no-notify src/",
"lint": "eslint \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\"",
"fix-lint": "eslint \"src/**/*.{js,ts}\" \"test/**/*.{js,ts}\" --quiet --fix",
"start": "yarn run compile && cross-env NODE_ENV=production node lib/",
"start:prod": "cross-env NODE_ENV=production node lib/",
"compile": "shx rm -rf lib/ && tsc"
},
"types": "lib/",
"dependencies": {
"@bervproject/feathers-advance-hook": "^1.1.1",
"@feathersjs/authentication": "^4.5.15",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^4.5.15",
"@feathersjs/authentication-oauth": "^4.5.15",
"@feathersjs/configuration": "^4.5.15",
"@feathersjs/errors": "^5.0.30",
"@feathersjs/express": "^4.5.15",
"@feathersjs/feathers": "^4.5.15",
"@feathersjs/socketio": "^4.5.18",
"cls-hooked": "^4.2.2",
"compression": "^1.7.5",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"feathers-authentication-hooks": "^1.0.2",
"feathers-hooks-common": "^6.1.5",
"feathers-permissions": "^2.1.4",
"feathers-sequelize": "^6.4.0",
"helmet": "^8.0.0",
"pg": "^8.13.1",
"sequelize": "^6.37.5",
"serve-favicon": "^2.5.0",
"uuid": "^8.3.2",
"winston": "^3.16.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/cls-hooked": "^4.3.9",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^9.0.0",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"axios": "^1.7.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"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",
"tslint": "^6.1.3",
"typescript": "^5.6.3"
},
"packageManager": "yarn@1.22.19"
}