-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1016 Bytes
/
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
{
"name": "cbr-api",
"main": "src/index.js",
"type": "module",
"packageManager": "yarn@3.5.0",
"version": "0.1.2",
"dependencies": {
"@fastify/swagger": "^8.3.1",
"@fastify/swagger-ui": "^1.8.0",
"body-parser": "^1.20.2",
"concurrently": "^8.0.1",
"consola": "^3.1.0",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"fastify": "^4.17.0",
"fastify-allow": "^1.2.2",
"got": "^12.6.0",
"jsdom": "^21.1.1",
"pino-pretty": "^10.0.0"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-berry": "^0.15.5",
"nodemon": "^2.0.22"
},
"scripts": {
"dev-js": "nodemon src/index.js",
"dev-go": "cd go-fetch-subs/ && go run main.go",
"dev": "conc \"yarn:dev-*\" -c bgMagenta,bgBlue -p \" {command} \" -l 25",
"lint": "eslint .",
"start-js": "node src/index.js",
"start-go": "cd go-fetch-subs/ && go build -o go-fetch-subs && ./go-fetch-subs",
"start": "conc \"yarn:start-*\" -c bgMagenta,bgBlue -p \" {command} \" -l 25"
}
}