forked from iamDistractech/jungle-gym
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 1.83 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
{
"name": "jungle_gym",
"version": "0.3.0",
"description": "JungleGym is an app for primary school teachers that will help them with their gymnastics lessons",
"scripts": {
"dev": "svelte-kit dev",
"build": "svelte-kit build",
"preview": "svelte-kit preview",
"lint": "prettier --check --plugin-search-dir=. . && eslint --ignore-path .gitignore .",
"format": "prettier --write --plugin-search-dir=. .",
"prepare": "husky install"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,ts,md,svelte,json}": "prettier --plugin-search-dir=. --write"
},
"devDependencies": {
"@sveltejs/adapter-netlify": "^1.0.0-next.17",
"@sveltejs/kit": "^1.0.0-next.115",
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.4.0",
"@types/uuid": "^8.3.0",
"@typescript-eslint/eslint-plugin": "^4.26.1",
"@typescript-eslint/parser": "^4.26.1",
"eslint": "^7.28.0",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-svelte3": "^3.2.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"prettier": "~2.2.1",
"prettier-plugin-svelte": "^2.2.0",
"svelte": "^3.34.0",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.3.0",
"typescript": "^4.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/iSirThijs/jungle-gym.git"
},
"homepage": "https://github.com/iSirThijs/jungle-gym",
"contributors": [
{
"name": "Sjoerd Reen",
"email": "sjoerd.reen@hva.nl"
},
{
"name": "Roy Kuijper",
"email": "roy.kuijper@hva.nl"
},
{
"name": "Thijs Spijker",
"email": "thijs.spijker@hva.nl"
},
{
"name": "Jochem Vogel",
"email": "jochem.vogel@hva.nl"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/iSirThijs/jungle-gym/issues"
},
"type": "module",
"dependencies": {
"bcrypt": "^5.0.1",
"cookie": "^0.4.1",
"redis": "^3.1.2",
"tedis": "^0.1.12",
"uuid": "^8.3.2"
}
}