-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 1017 Bytes
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
{
"name": "botbrawler",
"version": "1.0.0",
"description": "",
"main": "main.js",
"scripts": {
"start:dev": "npm run build && nodemon",
"start": "npm run build && node ./build/main.js",
"build": "tsc && npm run copy",
"copy": "rm -rf ./build/public && mkdir ./build/public/ && cp -r src/public/ ./build"
},
"author": "Valquaint",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/method-override": "^0.0.32",
"@types/node": "^20.4.7",
"nodemon": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"winston": "^3.10.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/valquaint/BotBrawler.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/valquaint/BotBrawler/issues"
},
"homepage": "https://github.com/valquaint/BotBrawler#readme",
"dependencies": {
"dotenv": "^16.3.1",
"ejs": "^3.1.9",
"express": "^4.18.2",
"method-override": "^3.0.0",
"mongoose": "^7.5.2"
}
}