-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.35 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
{
"name": "@deco-team/deco-server",
"version": "1.0.12",
"description": "A web server that enables installable plugins, structured learning and bidirectional AI interactions.",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon dev.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"postinstall": "node ./lib/postInstallRun.js",
"setup-dev": "node ./lib/setupDev.js"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"db",
"lib",
"index.js"
],
"type": "module",
"author": "Mike Carbone <mike@carbonology.in> (https://carbonemike.com)",
"license": "MIT",
"dependencies": {
"cookie": "^0.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"morgan": "^1.10.0",
"pg": "^8.11.3",
"vhost": "^3.0.2"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"semantic-release": "^22.0.12",
"supertest": "^6.3.3"
},
"nodemonConfig": {
"ignore": [
"installs/*",
"apps.json"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikecarbone/deco-server.git"
},
"bugs": {
"url": "https://github.com/mikecarbone/deco-server/issues"
},
"publishConfig": {
"access": "public"
}
}