-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "grugbot",
"version": "1.0.0",
"description": "Bot",
"main": "dist/server.js",
"author": "Pondering Democritus",
"license": "MIT",
"dependencies": {
"@discordjs/builders": "^0.12.0",
"@discordjs/rest": "^0.3.0",
"@notionhq/client": "^1.0.4",
"api": "^4.5.1",
"ascii-table": "^0.0.9",
"axios": "^0.27.2",
"body-parser": "^1.19.1",
"discord-api-types": "^0.29.0",
"discord.js": "^13.6.0",
"dotenv": "^16.0.0",
"express": "^4.17.2",
"graphql": "^16.3.0",
"graphql-request": "^4.1.0",
"node-cron": "^3.0.0",
"nodemon": "^2.0.15",
"python-shell": "^3.0.1",
"sharp": "^0.30.2",
"starknet": "^3.5.1",
"ts-node": "^10.4.0",
"twit": "^2.2.11",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/node": "^16.11.6",
"@types/node-cron": "^3.0.1",
"@types/sharp": "^0.30.0",
"@types/twit": "^2.2.30"
},
"engines": {
"node": "^16.16.0"
},
"scripts": {
"start": "yarn build-ts && npm run serve && yarn watch-node",
"serve": "node dist/server.js",
"watch-node": "nodemon dist/server.js",
"build-ts": "tsc",
"watch-ts": "tsc -w",
"test": "echo \"Error: no test specified\" && exit 1"
}
}