]>
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": { |
c1bc5993 RBR |
16 | "dev": "routify -c dev-vite", |
17 | "dev-vite": "vite", | |
18 | "build": "routify -b && vite build", | |
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": { | |
c1bc5993 | 25 | "@apollo/client": "^3.3.11", |
2dc54482 | 26 | "eventemitter3": "^4.0.4", |
c1bc5993 RBR |
27 | "language-name-map": "^0.3.0", |
28 | "svelte-apollo": "^0.4.0" | |
2d5b700e BB |
29 | }, |
30 | "devDependencies": { | |
38416066 BB |
31 | "@hapi/eslint-config-hapi": "^13.0.2", |
32 | "@hapi/eslint-plugin-hapi": "^4.3.5", | |
c1bc5993 RBR |
33 | "@roxi/routify": "^2.14.0", |
34 | "@sveltejs/vite-plugin-svelte": "^1.0.0-next.2", | |
2dc54482 | 35 | "eslint": "^7.3.0", |
00a6e8aa | 36 | "eslint-plugin-svelte3": "^2.7.3", |
2dc54482 | 37 | "htmlhint": "^0.14.0", |
bd8e98d7 RBR |
38 | "svelte": "^3.29.0", |
39 | "svelte-i18n": "^3.0.4", | |
40 | "vite": "^2.0.4" | |
2d5b700e BB |
41 | }, |
42 | "keywords": [ | |
43 | "forum" | |
44 | ], | |
45 | "browserslist": [ | |
46 | "last 1 firefox version" | |
32ec81f6 BB |
47 | ], |
48 | "jsdoc2md": { | |
49 | "files": [ | |
bd8e98d7 | 50 | "src/**/*.js" |
32ec81f6 | 51 | ] |
38416066 | 52 | }, |
bd8e98d7 | 53 | "type": "module" |
2d5b700e | 54 | } |