-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
53
{
"name": "code-codes",
"version": "0.0.1",
"description": "A Discord Bot to manage CodeCon's Gamification",
"main": "index.js",
"scripts": {
"start": "npm run reset:tokens && npm run build && node dist/index.js",
"build": "babel src -d dist",
"import": "npm run build && node dist/importers",
"lint": "eslint .",
"test": "jest tests/ --runInBand",
"clean": "rm package-lock.json && rm -rf node_modules",
"reset:tokens": "rm data/tokens.json && cp data/sampleTokens.json data/tokens.json"
},
"keywords": [
"codecon",
"discord",
"bot",
"gamification",
"tech"
],
"author": "Mark Kop",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.11.2",
"csv-parser": "^3.0.0",
"discord.js": "^12.3.1",
"dotenv": "^8.2.0",
"mongoose": "^5.12.2",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"@babel/cli": "^7.11.5",
"@babel/core": "^7.11.5",
"@babel/node": "^7.10.5",
"@babel/plugin-transform-runtime": "^7.11.5",
"@babel/preset-env": "^7.11.5",
"@types/jest": "^26.0.13",
"babel-jest": "^26.3.0",
"eslint": "^7.8.1",
"eslint-config-standard": "^14.1.1",
"eslint-config-standard-jsdoc": "^9.3.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^30.3.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.4.2"
},
"jest": {
"testEnvironment": "node"
}
}