-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.92 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
{
"name": "algo3-discord-bot",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "npm run python-scripts && node ./dist/src/index.js",
"load-commands": "node ./dist/src/deploy-commands.js",
"clean": "rm -rf ./dist",
"python-scripts": "python3 ./scripts/bibliography_scraper.py && python3 -m submodules.next_class_info_scraper && python3 -m submodules.generate_students_list",
"build": "npm run clean && npm run prettify && tsc && npm run load-commands",
"test": "jest",
"dev": "npm run clean && nodemon -e ts --exec \"npm run build && npm start\"",
"prettify": "npx prettier --write 'src/**/*.ts'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ilitteri/algo3-discord-bot.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ilitteri/algo3-discord-bot/issues"
},
"homepage": "https://github.com/ilitteri/algo3-discord-bot#readme",
"dependencies": {
"@discordjs/builders": "^0.6.0",
"@discordjs/rest": "^0.1.0-canary.0",
"child_process": "^1.0.2",
"consola": "^2.15.3",
"discord-api-types": "^0.22.0",
"discord.js": "^13.8.0",
"dotenv": "^10.0.0",
"fs": "^0.0.1-security",
"node-cron": "^3.0.0",
"path": "^0.12.7",
"prettier": "^2.3.2",
"typescript": "^4.4.2"
},
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/preset-typescript": "^7.15.0",
"@babel/runtime": "^7.15.4",
"@types/glob": "^7.1.4",
"@types/jest": "^27.0.1",
"@types/node-cron": "^2.0.4",
"babel-jest": "^27.1.0",
"eslint": "^7.32.0",
"glob": "^7.1.7",
"jest": "^27.1.0",
"nodemon": "^2.0.12",
"tsc-node": "^0.0.3"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true
},
"engines": {
"node": "16.x"
}
}