]>
Commit | Line | Data |
---|---|---|
2d5b700e BB |
1 | { |
2 | "name": "forum", | |
3 | "description": "A Forum for the year 3000", | |
4 | "license": "Apache-2.0", | |
5 | "author": "Rubén Beltrán del Río <ruben@unlimited.pizza>", | |
6 | "homepage": "https://forum.unlimited.pizza", | |
7 | "repository": { | |
8 | "type": "git", | |
9 | "url": "git+ssh://git@gitlab.com/rbdr/forum.git" | |
10 | }, | |
11 | "bugs": { | |
12 | "url": "https://gitlab.com/rbdr/forum/issues" | |
13 | }, | |
14 | "version": "1.0.0", | |
15 | "type": "module", | |
16 | "main": "lib/forum", | |
17 | "scripts": { | |
18 | "build": "parcel build --no-source-maps ./app/index.html", | |
19 | "lint": "eslint lib app bin", | |
20 | "linthtml": "htmlhint", | |
21 | "setup-hooks": "ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit", | |
22 | "test": "lab -r lab-markdown-reporter -o doc/COVERAGE.md -r console -o stdout -c --coverage-path lib -L -t 100 test", | |
23 | "watch": "parcel ./app/index.html" | |
24 | }, | |
25 | "dependencies": { | |
26 | "@hapi/joi": "16.1.8", | |
27 | "getenv2": "^2.0.0", | |
28 | "koa": "^2.11.0", | |
29 | "koa-send": "^5.0.0", | |
30 | "koa-static": "^5.0.0", | |
31 | "rethinkdb": "^2.4.2" | |
32 | }, | |
33 | "devDependencies": { | |
34 | "@hapi/eslint-config-hapi": "^12.3.0", | |
35 | "@hapi/eslint-plugin-hapi": "^4.3.4", | |
36 | "@hapi/lab": "^21.0.0", | |
37 | "eslint": "^6.7.2", | |
38 | "htmlhint": "^0.11.0", | |
39 | "lab-markdown-reporter": "^1.0.2", | |
40 | "parcel-bundler": "^1.12.4", | |
41 | "parcel-plugin-svelte": "^4.0.5", | |
42 | "svelte": "^3.16.5" | |
43 | }, | |
44 | "keywords": [ | |
45 | "forum" | |
46 | ], | |
47 | "browserslist": [ | |
48 | "last 1 firefox version" | |
49 | ] | |
50 | } |