-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
52 lines (52 loc) · 1.31 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
{
"private": true,
"name": "megabot",
"version": "1.6.6",
"description": "CSCH megabot with standalone packages",
"main": "src/index.js",
"repository": "https://github.com/cscareerhub/megabot.git",
"author": "brendacs <brenda.zhang2@gmail.com>",
"license": "MIT",
"scripts": {
"build": "babel src -d lib --ignore **/*.test.js",
"start": "nodemon -L",
"serve": "node lib/index.js",
"coverage": "jest --coverage",
"test": "jest",
"lint": "eslint 'src/**/*.js' 'src/*.js'",
"format": "yarn prettier --write .",
"postinstall": "husky install"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-plugin-jest": "^24.1.3",
"jest": "^27.0.6",
"jest-cli": "^27.0.6",
"mongodb-memory-server": "^7.2.0",
"prettier": "^2.3.2"
},
"dependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"babel-polyfill": "^6.26.0",
"discord.js": "^12.5.1",
"dotenv": "^10.0.0",
"express": "^4.15.4",
"husky": "^7.0.1",
"jsdoc": "^3.6.7",
"mongoose": "^5.11.8",
"nodemon": "^2.0.6",
"uuid": "^8.3.2",
"winston": "^3.3.3"
},
"nodemonConfig": {
"ignore": [
"lib/*"
],
"exec": [
"yarn build && yarn serve"
]
}
}