-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.82 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": "featherjs-with-firebase-auth",
"description": "",
"version": "0.0.0",
"homepage": "",
"private": true,
"keywords": [
"feathers"
],
"author": {},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 21.7.3"
},
"feathers": {
"language": "js",
"packager": "npm",
"database": "mongodb",
"framework": "koa",
"transports": [
"rest",
"websockets"
],
"schema": "typebox"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"lib/client.js",
"lib/**/*.d.ts",
"lib/**/*.shared.js"
],
"main": "src/client",
"type": "module",
"scripts": {
"start": "node src",
"dev": "nodemon src/",
"prettier": "npx prettier \"**/*.js\" --write",
"mocha": "cross-env NODE_ENV=test mocha test/ --recursive --exit",
"test": "npm run mocha",
"bundle:client": "npm pack --pack-destination ./public"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.29",
"@feathersjs/authentication": "^5.0.29",
"@feathersjs/authentication-client": "^5.0.29",
"@feathersjs/authentication-local": "^5.0.29",
"@feathersjs/authentication-oauth": "^5.0.29",
"@feathersjs/configuration": "^5.0.29",
"@feathersjs/errors": "^5.0.29",
"@feathersjs/feathers": "^5.0.29",
"@feathersjs/koa": "^5.0.29",
"@feathersjs/mongodb": "^5.0.29",
"@feathersjs/schema": "^5.0.29",
"@feathersjs/socketio": "^5.0.29",
"@feathersjs/transport-commons": "^5.0.29",
"@feathersjs/typebox": "^5.0.29",
"firebase-admin": "^12.4.0",
"mongodb": "^6.8.0",
"winston": "^3.14.2"
},
"devDependencies": {
"@feathersjs/cli": "^5.0.29",
"@feathersjs/rest-client": "^5.0.29",
"axios": "^1.7.2",
"cross-env": "^7.0.3",
"mocha": "^10.6.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3"
}
}