-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.71 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
{
"author": "danthonywalker",
"dependencies": {
"@googleapis/youtube": "13.0.0",
"canvas": "2.11.2",
"compress-tag": "3.0.0",
"cron": "3.1.6",
"csv": "6.3.6",
"discord.js": "14.14.1",
"express": "4.18.2",
"glob": "10.3.10",
"ioredis": "5.3.2",
"lunr": "2.3.9",
"pg": "8.11.3",
"pino": "8.17.2",
"pino-http": "9.0.0",
"prom-client": "15.1.0",
"puppeteer": "21.7.0",
"rss-parser": "3.13.0",
"vega": "5.27.0"
},
"devDependencies": {
"@types/express": "4.17.21",
"@types/lunr": "2.3.7",
"@types/pg": "8.10.9",
"@typescript-eslint/eslint-plugin": "6.18.0",
"@typescript-eslint/parser": "6.18.0",
"eslint": "8.56.0",
"eslint-plugin-perfectionist": "2.5.0",
"eslint-plugin-sonarjs": "0.23.0",
"eslint-plugin-unicorn": "50.0.1",
"pino-pretty": "10.3.1",
"prettier": "3.1.1",
"shx": "0.3.4",
"typescript": "5.3.3"
},
"license": "MIT",
"name": "pedestrian",
"private": true,
"scripts": {
"build": "shx rm -rf ./build && tsc",
"debug": "node --trace-warnings --enable-source-maps --env-file .env --env-file .env.debug ./build/index.js | pino-pretty",
"dump": "docker exec --tty postgres pg_dumpall --clean --username=user > dump.sql",
"migrate": "docker-compose up --detach --build flyway",
"prettier": "prettier --write .",
"production": "node --no-warnings --enable-source-maps ./build/index.js",
"restore": "shx cat dump.sql | docker exec --interactive postgres psql --username=user --dbname=postgres",
"services": "docker-compose up --detach postgres redis flyway",
"start": "docker-compose up --build pedestrian",
"test": "tsc --noemit && eslint . && prettier --check ."
}
}