-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
51 lines (51 loc) · 1.38 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
{
"name": "cognitum",
"version": "1.0.0",
"description": "Statistics and utilities bot.",
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"migrate": "npx sequelize db:migrate --env \"production\"",
"init-dev": "npm run init-dev:devdb && npm run init-dev:migrate",
"init-dev:migrate": "npx sequelize db:migrate",
"init-dev:devdb": "node ./init/devdb-init.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thecorecity/cognitum.git"
},
"keywords": [
"discord",
"bot",
"statistics",
"utilities"
],
"author": "The Core Community",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/thecorecity/cognitum/issues"
},
"homepage": "https://github.com/thecorecity/cognitum#readme",
"dependencies": {
"axios": "^0.28.0",
"discord-api-types": "^0.37.89",
"discord.js": "^14.15.3",
"ignore": "^5.1.9",
"lodash": "^4.17.21",
"mariadb": "^2.5.6",
"sequelize": "^6.37.3",
"winston": "^3.3.3"
},
"devDependencies": {
"@babel/core": "^7.12.3",
"@babel/eslint-parser": "^7.12.1",
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-private-methods": "^7.12.1",
"eslint": "^7.14.0",
"readline-sync": "^1.4.10",
"sequelize-cli": "^6.6.2"
}
}