]>
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", | |
2d5b700e | 15 | "scripts": { |
bd8e98d7 RBR |
16 | "dev": "svelte-kit dev", |
17 | "build": "svelte-kit build", | |
18 | "start": "svelte-kit start", | |
00a6e8aa | 19 | "lint": "eslint --ext .svelte --ext .js .", |
2d5b700e BB |
20 | "linthtml": "htmlhint", |
21 | "setup-hooks": "ln -s ../../scripts/git-hooks/pre-commit .git/hooks/pre-commit", | |
bd8e98d7 | 22 | "test": "echo sorry" |
2d5b700e BB |
23 | }, |
24 | "dependencies": { | |
2dc54482 | 25 | "eventemitter3": "^4.0.4", |
bd8e98d7 | 26 | "language-name-map": "^0.3.0" |
2d5b700e BB |
27 | }, |
28 | "devDependencies": { | |
38416066 BB |
29 | "@hapi/eslint-config-hapi": "^13.0.2", |
30 | "@hapi/eslint-plugin-hapi": "^4.3.5", | |
bd8e98d7 RBR |
31 | "@sveltejs/adapter-node": "next", |
32 | "@sveltejs/kit": "next", | |
2dc54482 | 33 | "eslint": "^7.3.0", |
00a6e8aa | 34 | "eslint-plugin-svelte3": "^2.7.3", |
2dc54482 | 35 | "htmlhint": "^0.14.0", |
bd8e98d7 RBR |
36 | "svelte": "^3.29.0", |
37 | "svelte-i18n": "^3.0.4", | |
38 | "vite": "^2.0.4" | |
2d5b700e BB |
39 | }, |
40 | "keywords": [ | |
41 | "forum" | |
42 | ], | |
43 | "browserslist": [ | |
44 | "last 1 firefox version" | |
32ec81f6 BB |
45 | ], |
46 | "jsdoc2md": { | |
47 | "files": [ | |
bd8e98d7 | 48 | "src/**/*.js" |
32ec81f6 | 49 | ] |
38416066 | 50 | }, |
bd8e98d7 | 51 | "type": "module" |
2d5b700e | 52 | } |