-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.21 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
{
"name": "unkey-feathers",
"description": "A Feathers API protected with Unkey auth strategy",
"version": "0.0.0",
"homepage": "",
"private": true,
"keywords": [
"feathers"
],
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 20.9.0"
},
"feathers": {
"language": "ts",
"packager": "pnpm",
"database": "sqlite",
"framework": "koa",
"transports": [
"rest",
"websockets"
],
"schema": "typebox"
},
"directories": {
"lib": "src",
"test": "test"
},
"files": [
"lib/client.js",
"lib/**/*.d.ts",
"lib/**/*.shared.js"
],
"main": "lib/client",
"scripts": {
"dev": "nodemon -x ts-node src/index.ts",
"compile": "shx rm -rf lib/ && tsc",
"start": "node lib/",
"prettier": "npx prettier \"**/*.ts\" --write",
"mocha": "cross-env NODE_ENV=test mocha test/ --require ts-node/register --recursive --extension .ts --exit",
"test": "cross-env NODE_ENV=test npm run migrate && npm run mocha",
"bundle:client": "npm run compile && npm pack --pack-destination ./public",
"migrate": "knex migrate:latest",
"migrate:make": "knex migrate:make"
},
"dependencies": {
"@feathersjs/authentication": "^5.0.30",
"@feathersjs/authentication-client": "^5.0.30",
"@feathersjs/authentication-local": "^5.0.30",
"@feathersjs/configuration": "^5.0.30",
"@feathersjs/errors": "^5.0.30",
"@feathersjs/feathers": "^5.0.30",
"@feathersjs/knex": "^5.0.30",
"@feathersjs/koa": "^5.0.30",
"@feathersjs/schema": "^5.0.30",
"@feathersjs/socketio": "^5.0.30",
"@feathersjs/transport-commons": "^5.0.30",
"@feathersjs/typebox": "^5.0.30",
"@unkey/api": "^0.26.2",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"socket.io": "^4.8.0",
"sqlite3": "^5.1.7",
"winston": "^3.15.0"
},
"devDependencies": {
"@feathersjs/adapter-commons": "^5.0.30",
"@feathersjs/cli": "5.0.30",
"@feathersjs/rest-client": "^5.0.30",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"axios": "^1.7.7",
"cross-env": "^7.0.3",
"mocha": "^10.7.3",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"shx": "^0.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
}
}