-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.54 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
{
"name": "level",
"version": "0.25.1",
"license": "MIT",
"author": {
"name": "Glokas"
},
"description": "App to translate Scripture step by step",
"homepage": "https://level.bible/",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"prepare": "husky install",
"release": "standard-version",
"release:first": "standard-version --first-release",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@supabase/auth-helpers-nextjs": "^0.7.2",
"@supabase/supabase-js": "^2.26.0",
"@texttree/notepad-rcl": "2.6.4",
"@texttree/obs-format-convert-rcl": "^0.4.2",
"@texttree/tn-quote": "^0.5.0",
"@texttree/translation-words-helpers": "^0.2.4",
"axios": "^0.27.2",
"base64-arraybuffer": "^1.0.2",
"file-saver": "^2.0.5",
"formidable": "^3.5.1",
"github-markdown-css": "^5.2.0",
"i18next": "^23.11.3",
"js-yaml": "^4.1.0",
"jszip": "^3.10.1",
"lamejs": "1.2.0",
"localforage": "^1.10.0",
"next": "^14.2.14",
"next-i18next": "^14.0.3",
"next-swagger-doc": "^0.4.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hook-form": "^7.45.1",
"react-hot-toast": "^2.4.1",
"react-i18next": "^13.2.2",
"react-markdown": "^8.0.7",
"react-textarea-autosize": "^8.5.0",
"recoil": "^0.7.7",
"rehype-raw": "^6.1.1",
"remark-gfm": "^3.0.1",
"showdown": "^2.1.0",
"swagger-ui-react": "^5.1.0",
"swr": "^2.2.0",
"usfm-js": "^3.4.2"
},
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@ianvs/prettier-plugin-sort-imports": "^4.3.1",
"@svgr/webpack": "^8.0.1",
"@tailwindcss/aspect-ratio": "^0.4.2",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"autoprefixer": "^10.4.14",
"eslint": "^8.57.0",
"eslint-config-next": "^14.2.14",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-tailwindcss": "^3.17.5",
"husky": "^8.0.3",
"jest": "^29.5.0",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.24",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.8",
"standard-version": "^9.5.0",
"tailwindcss": "^3.3.2"
}
}