-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.27 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
{
"name": "botstudio-forge",
"version": "1.0.0",
"description": "Forge Your Robotic Destiny!",
"main": "server.js",
"type": "module",
"private": true,
"scripts": {
"format": "prettier **/** -w -c",
"dev": "nodemon",
"build": "rm -rf build && cp -r public build && buildm -b build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/absyro/botstudio-forge.git"
},
"keywords": [
"botstudio",
"forge",
"robot",
"bot",
"chatbot",
"automation"
],
"author": "Absyro Company",
"license": "AGPL-3.0-only",
"bugs": {
"url": "https://github.com/absyro/botstudio-forge/issues"
},
"homepage": "https://github.com/absyro/botstudio-forge#readme",
"dependencies": {
"chalk": "^5.3.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"express": "^4.19.2",
"express-rate-limit": "^7.2.0",
"helmet": "^7.1.0",
"nodemon": "^3.1.0",
"response-time": "^2.3.2",
"velocedb": "^2.1.1",
"ws": "^8.16.0"
},
"devDependencies": {
"@types/bootstrap": "^5.2.10",
"@types/compression": "^1.7.5",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.12.7",
"@types/response-time": "^2.3.8",
"buildm": "^4.5.2",
"prettier": "^3.2.5"
}
}