-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
74 lines (74 loc) · 1.91 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
{
"name": "coupon-aggregator-server",
"description": "Coupon aggregator backend.",
"version": "0.0.0",
"homepage": "",
"private": true,
"main": "src",
"keywords": [
"feathers"
],
"author": {
"name": "Punit Kumar",
"email": "[email protected]"
},
"contributors": [],
"bugs": {},
"directories": {
"lib": "src",
"test": "test/",
"config": "config/"
},
"engines": {
"node": "^20.0.0",
"npm": ">= 3.0.0"
},
"scripts": {
"test": "npm run lint && npm run compile && npm run jest",
"lint": "eslint src/. test/. --config .eslintrc.json --ext .ts --fix",
"dev": "ts-node-dev --no-notify src/",
"start": "npm run compile && node lib/",
"jest": "jest --forceExit",
"compile": "shx rm -rf lib/ && tsc"
},
"standard": {
"env": [
"jest"
],
"ignore": []
},
"types": "lib/",
"dependencies": {
"@feathersjs/authentication": "^4.5.18",
"@feathersjs/authentication-local": "^4.5.18",
"@feathersjs/authentication-oauth": "^4.5.18",
"@feathersjs/configuration": "^4.5.17",
"@feathersjs/errors": "^4.5.17",
"@feathersjs/express": "^4.5.18",
"@feathersjs/feathers": "^4.5.17",
"@feathersjs/schema": "^5.0.26",
"@feathersjs/transport-commons": "^5.0.25",
"@feathersjs/typebox": "^5.0.26",
"compression": "^1.7.4",
"cors": "^2.8.5",
"feathers-hooks-common": "^4.20.7",
"feathers-mongoose": "^8.5.1",
"feathers-swagger": "^3.0.0",
"helmet": "^5.1.1",
"koa": "^2.15.3",
"koa-mount": "^4.0.0",
"koa-static": "^5.0.0",
"mongodb-core": "^3.2.7",
"mongoose": "^6.13.0",
"serve-favicon": "^2.5.0",
"swagger-ui-dist": "^5.17.14",
"winston": "^3.13.0"
},
"devDependencies": {
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/jsonwebtoken": "^9.0.6",
"@types/serve-favicon": "^2.5.7",
"@types/swagger-ui-dist": "^3.30.4"
}
}