-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 986 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 986 Bytes
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
{
"name": "name-that-artist",
"version": "1.0.0",
"description": "Discord game for The Tezos Community - Name That Artist",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "node --watch index.js",
"deploy-commands": "node deploy-commands.js",
"test": "node tests/append-log.test.js && node tests/storage-integration.test.js && node tests/alltime-stats.test.js",
"test:append-log": "node tests/append-log.test.js",
"test:storage": "node tests/storage-integration.test.js",
"test:alltime": "node tests/alltime-stats.test.js",
"verify": "node tests/manual-verification.js"
},
"keywords": [
"discord",
"bot",
"game",
"tezos",
"ttc",
"name-that-artist"
],
"author": "The Tezos Community",
"license": "MIT",
"dependencies": {
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"graphql-request": "^6.1.0",
"node-fetch": "^3.3.2",
"rate-keeper": "^1.2.3"
}
}