-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "breadcrum.net",
"description": "Breadcrum internet newspaper clippigns",
"version": "0.0.22",
"type": "module",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/breadcrum.net/issues"
},
"dependencies": {
"@nearform/sql": "^1.5.0",
"@siteup/cli": "^1.3.5",
"clean-deep": "^3.4.0",
"desm": "^1.2.0",
"fastify": "^3.0.0",
"fastify-auth": "^1.1.0",
"fastify-autoload": "^3.0.2",
"fastify-caching": "^6.2.0",
"fastify-circuit-breaker": "^1.1.0",
"fastify-cli": "^2.5.1",
"fastify-compress": "^4.0.1",
"fastify-cookie": "^5.6.0",
"fastify-cors": "^6.0.3",
"fastify-env": "^2.1.1",
"fastify-healthcheck": "^3.1.0",
"fastify-jwt": "^4.1.3",
"fastify-metrics": "^8.0.0",
"fastify-plugin": "^3.0.0",
"fastify-postgres": "^3.5.0",
"fastify-rate-limit": "^5.7.2",
"fastify-sensible": "^3.1.0",
"fastify-static": "^4.6.1",
"fetch-undici": "^2.0.0",
"fluent-json-schema": "^3.0.1",
"fragmentions": "^1.1.3",
"highlight.js": "^11.5.0",
"local-storage-proxy": "^4.0.2",
"mine.css": "^5.0.2",
"pg": "^8.6.0",
"postgrator": "^7.0.0",
"postgrator-cli": "^6.0.0",
"uland-isomorphic": "^1.0.0"
},
"devDependencies": {
"auto-changelog": "^2.0.0",
"c8": "^7.10.0",
"dependency-cruiser": "^11.0.0",
"gh-release": "^6.0.0",
"npm-run-all2": "^5.0.0",
"snazzy": "^9.0.0",
"sodium-native": "^3.2.1",
"standard": "^17.0.0",
"tap": "^16.0.0"
},
"engines": {
"node": "^17.5.0",
"npm": "^8.4.1"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"homepage": "https://github.com/hifiwi-fi/breadcrum.net",
"keywords": [],
"license": "AGPL-3.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hifiwi-fi/breadcrum.net.git"
},
"scripts": {
"build": "npm run clean && run-p build:*",
"build:siteup": "siteup --src web --dest public",
"clean": "rimraf public && mkdirp public",
"deps": "depcruise --exclude '^node_modules|^[a-zA-Z0-9\\_]+$' --output-type dot . | dot -T svg > dependencygraph.svg",
"migrate": "postgrator",
"prod-migrate": "postgrator --no-config",
"prepare": "npm run build",
"prepublishOnly": "git push --follow-tags && gh-releas -y",
"prod-sim": "fastify start -l info app.js --address 0.0.0.0",
"release": "git push --follow-tags && gh-release -y",
"start": "npm run watch",
"test": "run-s test:*",
"test:deptree": "depcruise --validate .dependency-cruiser.json app.js web routes plugins",
"test:standard": "standard --verbose | snazzy",
"test:tap": "c8 tap --no-coverage",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"watch": "npm run clean && run-p watch:*",
"watch:server": "fastify start -w -l info -P -p 3000 --options --address 0.0.0.0 app.js",
"watch:siteup": "npm run build:siteup -- --watch"
},
"standard": {
"ignore": []
},
"c8": {
"reporter": [
"lcov",
"text"
]
}
}