-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.49 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.49 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
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@bitbeat/web",
"description": "The web server module for bitbeat.",
"license": "MIT",
"version": "0.0.21",
"main": "./index.js",
"keywords": [
"bitbeat",
"framework",
"modular",
"backend",
"minimal",
"web",
"http",
"server",
"cors",
"api",
"rest"
],
"author": "Oliver Freudrich <info@oliverfreudrich.com> (https://oliverfreudrich.com)",
"private": false,
"typings": "./index.d.ts",
"repository": "bitbeatjs/web",
"bugs": {
"url": "https://github.com/bitbeatjs/web/issues"
},
"homepage": "https://github.com/bitbeatjs/web",
"scripts": {
"start": "npx @bitbeat/core start",
"build": "npx gulp",
"watch": "npx gulp watch",
"analyse:dependencies": "npx bundle-phobia -p package.json",
"analyse:licenses": "yarn licenses list",
"lint": "eslint .",
"prepare": "npm run build"
},
"dependencies": {
"fastify": "^3.7.0",
"fastify-cors": "^4.1.0",
"fastify-helmet": "^5.0.3",
"fastify-rate-limit": "^4.0.3",
"fastify-sensible": "^3.0.1",
"lodash": "^4.17.20",
"middie": "^5.2.0",
"promise-parallel-throttle": "^3.3.0",
"under-pressure": "^5.3.0"
},
"peerDependencies": {
"@bitbeat/core": "^0.0.21"
},
"devDependencies": {
"@bitbeat/core": "^0.0.21",
"@types/debug": "^4.1.5",
"@types/lodash": "^4.14.164",
"@types/node": "^14.14.6",
"@types/node-cron": "^2.0.3",
"@types/pino": "^6.3.3",
"@typescript-eslint/eslint-plugin": "^4.6.1",
"@typescript-eslint/parser": "^4.6.1",
"bundle-phobia-cli": "^0.14.10",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"gulp": "^4.0.2",
"gulp-changed-in-place": "^2.3.0",
"gulp-clean": "^0.4.0",
"gulp-eslint": "^6.0.0",
"gulp-terser": "^1.4.1",
"gulp-typescript": "^6.0.0-alpha.1",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"merge-stream": "^2.0.0",
"prettier": "^2.1.2",
"type-fest": "^0.18.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": [
"npm run lint",
"prettier --write"
],
"*.{js,css,md}": [
"prettier --write"
]
}
}