-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.88 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.88 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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "feathersjs-boilerplate",
"description": "Feathers JS Boilerplate",
"version": "0.1.0",
"homepage": "https://github.com/berviantoleo/FeathersJS-Boilerplate",
"license": "MIT",
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Bervianto Leo Pratama",
"email": "bervianto.leo@gmail.com"
},
"contributors": [],
"bugs": {
"email": "bervianto.leo@gmail.com",
"url": "https://github.com/berviantoleo/FeathersJS-Boilerplate/issues"
},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": ">= 22.0.0",
"yarn": ">= 0.18.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 && node lib/",
"start:prod": "node lib/",
"compile": "shx rm -rf lib/ && tsc"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@bervproject/feathers-advance-hook": "^2.0.5",
"@feathersjs/authentication": "^5.0.39",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^5.0.43",
"@feathersjs/authentication-oauth": "^5.0.43",
"@feathersjs/configuration": "^5.0.43",
"@feathersjs/errors": "^5.0.39",
"@feathersjs/express": "^5.0.39",
"@feathersjs/feathers": "^5.0.39",
"@feathersjs/socketio": "^5.0.43",
"@google-cloud/storage": "^7.19.0",
"cls-hooked": "^4.2.2",
"compression": "^1.8.1",
"cors": "^2.8.6",
"feathers-hooks-common": "^8.2.1",
"feathers-sequelize": "^7.0.3",
"helmet": "^8.1.0",
"mime-types": "^3.0.2",
"multer": "^2.1.1",
"pg": "^8.20.0",
"sequelize": "^6.37.8",
"serve-favicon": "^2.5.1",
"uuid": "^13.0.0",
"winston": "^3.19.0"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.2",
"@babel/preset-typescript": "^7.28.5",
"@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/helmet": "^4.0.0",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/mime-types": "^3.0.1",
"@types/multer": "^2.1.0",
"@types/node": "^25.5.0",
"@types/serve-favicon": "^2.5.7",
"@types/validator": "^13.15.10",
"axios": "^1.15.0",
"babel-jest": "^30.3.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"jest": "^30.3.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.58.0"
},
"packageManager": "yarn@1.22.19"
}