-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.51 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.51 KB
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
{
"name": "@agilehead/msgcore",
"version": "0.0.1",
"description": "Standalone conversation and messaging service",
"type": "module",
"private": true,
"workspaces": [
"node/packages/*"
],
"scripts": {
"build": "./scripts/build.sh",
"clean": "./scripts/clean.sh",
"start": "./scripts/start.sh",
"test": "cd node/packages/msgcore-server && npm test",
"test:grep": "cd node/packages/msgcore-server && npm run test:grep",
"migrate:msgcore:latest": "knex migrate:latest --knexfile database/msgcore/knexfile.js",
"migrate:msgcore:rollback": "knex migrate:rollback --knexfile database/msgcore/knexfile.js",
"migrate:msgcore:status": "knex migrate:status --knexfile database/msgcore/knexfile.js",
"migrate:msgcore:make": "knex migrate:make --knexfile database/msgcore/knexfile.js"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"@types/chai": "^5.0.2",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.5",
"chai": "^5.1.2",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"knex": "^3.1.0",
"mocha": "^10.8.2",
"prettier": "^3.4.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.19.1"
},
"dependencies": {
"better-sqlite3": "^11.8.1",
"dotenv": "^16.4.7"
},
"engines": {
"node": ">=22.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/agilehead/msgcore.git"
},
"keywords": [
"messaging",
"conversations",
"graphql",
"typescript"
],
"author": "Agilehead",
"license": "MIT"
}