-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 925 Bytes
/
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
{
"name": "sphinx-v2-bots-server",
"version": "1.0.0",
"description": "An Express Server that handles bot functionalities for Sphinx V2 ",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon src/index.ts",
"build": "rm -rf ./build && tsc",
"start": "npm run build && node build/index.js"
},
"author": "Bamidele Oluwatobi",
"license": "ISC",
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/node": "^20.14.2",
"nodemon": "^3.1.3",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"axios": "^1.7.2",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"reflect-metadata": "^0.2.2",
"sequelize": "^6.37.3",
"sequelize-typescript": "^2.1.6",
"sphinx-bot": "0.3.4",
"sqlite3": "^5.1.7",
"winston": "^3.13.0"
}
}