-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@tableland/discord-sql-logs",
"version": "0.0.0",
"description": "A Discord SQL bot @tableland network event logs",
"publishConfig": {
"access": "public"
},
"type": "module",
"types": "./dist/*.d.ts",
"files": [
"dist/**/*.js?(.map)",
"dist/**/*.d.ts",
"src/**/*.ts"
],
"scripts": {
"build": "npx tsc",
"start": "node dist/index.js",
"dev": "NODE_ENV=development npx tsx src/index.ts",
"dev:migrate": "NODE_ENV=development RUN_MIGRATION=true npx tsx src/index.ts",
"migrate": "RUN_MIGRATION=true node dist/index.js",
"lint": "eslint '**/*.{js,ts}'",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier '**/*.{js,ts,json,md}' --check",
"prettier:fix": "npm run prettier -- --write",
"format": "npm run prettier:fix && npm run lint:fix",
"prepublishOnly": "npm run build",
"test": "mocha",
"coverage": "c8 mocha --exit",
"clean": "rm -rf dist coverage"
},
"keywords": [
"tableland",
"sql",
"ethereum",
"database"
],
"license": "MIT AND Apache-2.0",
"devDependencies": {
"@types/better-sqlite3": "^7.6.9",
"@types/mocha": "^10.0.1",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"c8": "^7.12.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"tempy": "^3.1.0",
"ts-node": "^10.9.2",
"tsx": "^4.7.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@tableland/sdk": "^6.0.0",
"better-sqlite3": "^9.4.1",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"ethereumjs-util": "^7.1.5",
"js-sha3": "^0.9.3",
"sql-formatter": "^15.2.0"
}
}