-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.7 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.7 KB
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
{
"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": "^22.0.0 || ^24.0.0 || >=25",
"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": "^2.0.5",
"@feathersjs/authentication": "^5.0.41",
"@feathersjs/authentication-local": "^5.0.41",
"@feathersjs/authentication-oauth": "^5.0.41",
"@feathersjs/configuration": "^5.0.41",
"@feathersjs/errors": "^5.0.35",
"@feathersjs/express": "^5.0.35",
"@feathersjs/feathers": "^5.0.35",
"@feathersjs/socketio": "^5.0.41",
"cls-hooked": "^4.2.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"cross-env": "^10.1.0",
"feathers-authentication-hooks": "^1.0.2",
"feathers-hooks-common": "^8.2.1",
"feathers-permissions": "^2.1.4",
"feathers-sequelize": "^7.0.3",
"helmet": "^8.1.0",
"pg": "^8.19.0",
"sequelize": "^6.37.7",
"serve-favicon": "^2.5.1",
"uuid": "^13.0.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@babel/preset-typescript": "^7.28.5",
"@eslint/eslintrc": "^3.3.4",
"@eslint/js": "^10.0.1",
"@types/bluebird": "^3.5.42",
"@types/cls-hooked": "^4.3.9",
"@types/compression": "^1.8.1",
"@types/cors": "^2.8.19",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/node": "^25.3.2",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^11.0.0",
"@types/validator": "^13.15.10",
"axios": "^1.13.6",
"babel-jest": "^30.2.0",
"eslint": "^10.0.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.2.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"shx": "^0.4.0",
"ts-jest": "^29.4.6",
"ts-node-dev": "^2.0.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"packageManager": "yarn@1.22.19"
}