-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "cofi-bot",
"version": "0.0.1",
"description": "Multifuctional discord bot",
"main": "init.ts",
"scripts": {
"build": "tsc -p tsconfig.json",
"start": "node dist/init.js",
"watch": "tsc -p tsconfig.json -w",
"dev": "NODE_ENV=dev nodemon dist/init.js",
"prod": "NODE_ENV=prod nodemon dist/init.js",
"dev_win": "set NODE_ENV=dev && nodemon dist/init.js",
"prod_win": "set NODE_ENV=prod && nodemon dist/init.js",
"format": "prettier --write \"src/**/*.*(js|ts)\"",
"test": "mocha -r ts-node/register tests/**/*.spec.ts",
"test-api": "mocha -r ts-node/register tests/API/*.spec.ts",
"test-services": "mocha -r ts-node/register tests/Services/*.spec.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Cofi-Dev/Cofi-Bot.git"
},
"author": "Victor Santaella",
"maintainers": [
{
"name": "Victor Santaella",
"url": "https://github.com/victorst79"
}
],
"license": "ISC",
"bugs": {
"url": "https://github.com/Cofi-Dev/Cofi-Bot/issues"
},
"homepage": "https://github.com/Cofi-Dev/Cofi-Bot#readme",
"engines": {
"npm": ">=6.10.0",
"node": ">=12.0.0"
},
"dependencies": {
"@types/node": "^14.0.13",
"chalk": "^4.1.0",
"cors": "^2.8.5",
"discord-akairo": "^8.0.0",
"discord.js": "14.5.0",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"express-session": "^1.17.1",
"inversify": "^5.0.1",
"lodash": "^4.17.19",
"moment": "^2.27.0",
"moment-duration-format": "^2.3.2",
"opusscript": "0.0.7",
"reflect-metadata": "^0.1.13",
"typescript": "^3.9.5"
},
"devDependencies": {
"@types/body-parser": "^1.19.0",
"@types/chai": "^4.2.11",
"@types/chai-http": "^4.2.0",
"@types/express": "^4.17.9",
"@types/express-session": "^1.17.3",
"@types/mocha": "^7.0.2",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^7.1.2",
"nodemon": "^2.0.4",
"prettier": "2.0.5",
"ts-mockito": "^2.6.1",
"ts-node": "^8.10.2"
}
}