-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.81 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
{
"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": ">= 18.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.1",
"@feathersjs/authentication": "^5.0.29",
"@feathersjs/authentication-jwt": "^2.0.10",
"@feathersjs/authentication-local": "^5.0.31",
"@feathersjs/authentication-oauth": "^5.0.31",
"@feathersjs/configuration": "^5.0.31",
"@feathersjs/errors": "^5.0.30",
"@feathersjs/express": "^5.0.30",
"@feathersjs/feathers": "^5.0.9",
"@feathersjs/socketio": "^5.0.31",
"@google-cloud/storage": "^7.14.0",
"cls-hooked": "^4.2.2",
"compression": "^1.7.5",
"cors": "^2.8.5",
"feathers-hooks-common": "^8.2.1",
"feathers-sequelize": "^7.0.3",
"helmet": "^8.0.0",
"mime-types": "^2.1.35",
"multer": "^1.4.5-lts.1",
"pg": "^8.13.1",
"sequelize": "^6.37.5",
"serve-favicon": "^2.5.0",
"uuid": "^9.0.1",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.42",
"@types/cls-hooked": "^4.3.9",
"@types/compression": "^1.7.4",
"@types/cors": "^2.8.15",
"@types/helmet": "^4.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.7",
"@types/mime-types": "^2.1.4",
"@types/multer": "^1.4.12",
"@types/node": "^22.10.3",
"@types/serve-favicon": "^2.5.7",
"@types/uuid": "^9.0.8",
"@types/validator": "^13.12.2",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.21.0",
"axios": "^1.7.9",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.9",
"prettier": "^3.4.2",
"shx": "^0.3.4",
"ts-jest": "^29.2.5",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2"
},
"packageManager": "yarn@1.22.19"
}