-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.2 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
101
102
103
104
105
106
107
108
109
{
"name": "SoFT Chat",
"description": "SolidJS + FeathersJS Example Chat App",
"version": "0.0.0",
"homepage": "",
"type": "module",
"keywords": [
"feathers"
],
"author": {
"name": "GodBleak",
"email": "hello@godbleak.dev",
"url": "https://gitlab.godbleak.dev/godbleak"
},
"contributors": [],
"bugs": {},
"engines": {
"node": ">= 21.5.0"
},
"feathers": {
"language": "ts",
"packager": "npm",
"database": "sqlite",
"framework": "express",
"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": "cross-env NODE_ENV=development nodemon -x tsx src/index.ts",
"clean": "shx rm -rf lib",
"start": "node lib/",
"prettier": "npx prettier \"**/*.ts\" --write",
"build": "rollup -c rollup.config.js",
"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": "npm run clean && npm run build",
"generate:secret": "node -e \"console.log(require('crypto').randomBytes(64).toString('hex'))\"",
"migrate": "cross-env NODE_OPTIONS='--import tsx/esm' knex migrate:latest",
"migrate:make": ""
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.24",
"@feathersjs/authentication": "^5.0.24",
"@feathersjs/authentication-client": "^5.0.24",
"@feathersjs/authentication-local": "^5.0.24",
"@feathersjs/authentication-oauth": "^5.0.24",
"@feathersjs/configuration": "^5.0.24",
"@feathersjs/errors": "^5.0.24",
"@feathersjs/express": "^5.0.24",
"@feathersjs/feathers": "^5.0.24",
"@feathersjs/knex": "^5.0.24",
"@feathersjs/schema": "^5.0.24",
"@feathersjs/socketio": "^5.0.24",
"@feathersjs/socketio-client": "^5.0.24",
"@feathersjs/transport-commons": "^5.0.24",
"@feathersjs/typebox": "^5.0.24",
"compression": "^1.7.4",
"daisyui": "^4.10.1",
"dotenv": "^16.4.5",
"knex": "^3.1.0",
"socket.io-client": "^4.7.5",
"solid-js": "^1.8.16",
"sqlite3": "^5.1.7",
"winston": "^3.13.0"
},
"devDependencies": {
"@feathersjs/cli": "^5.0.24",
"@feathersjs/rest-client": "^5.0.24",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-replace": "^5.0.5",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.5",
"animated-tailwindcss": "^4.0.0",
"autoprefixer": "^10.4.19",
"axios": "^1.6.8",
"babel-plugin-transform-commonjs": "^1.1.6",
"cross-env": "^7.0.3",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"postcss": "^8.4.38",
"prettier": "^3.2.5",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-postcss": "^4.0.2",
"rollup-plugin-typescript2": "^0.36.0",
"shx": "^0.3.4",
"tailwindcss": "^3.4.3",
"tsx": "^4.7.2",
"typescript": "^5.4.4",
"vite": "^5.2.8",
"vite-plugin-solid": "^2.10.2"
}
}