-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.02 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.02 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
{
"name": "peerpp-bot",
"version": "1.0.0",
"description": "",
"main": "src/app.ts",
"dependencies": {
"@codam/fast42": "^1.4.1",
"@types/express": "^4.17.13",
"cron": "^2.1.0",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"node-fetch": "^2.1.0",
"pretty-ms": "^7.0.0",
"sqlite3": "^5.1.2",
"typescript": "^4.2.4",
"url-parameter-append": "^1.0.5"
},
"devDependencies": {
"@slack/bolt": "^3.11.1",
"@slack/types": "^2.5.0",
"@types/cron": "^2.0.0",
"@types/node": "^18.0.0",
"@types/node-fetch": "^2.1.0",
"@types/sqlite3": "^3.1.8",
"prettier": "^2.8.3",
"ts-node-dev": "^1.1.6"
},
"scripts": {
"prepare": "[ -d .git ] && (P=.git/hooks/pre-commit; echo \"#!/bin/sh\\nnpm run lint:check\" > $P; chmod 777 $P) || true",
"dev": "ts-node-dev --quiet --rs --respawn --clear --transpile-only src/app.ts",
"init-db": "sqlite3 ./db/peerdb.sqlite < ./sql/default.sql",
"build": "tsc",
"start": "node build/app.js",
"lint:check": "prettier --check src",
"lint:fix": "prettier --write src"
}
}