-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·76 lines (76 loc) · 2.08 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
{
"name": "iforal",
"version": "0.1.0",
"author": {
"name": "Vasco Sousa",
"email": "jvcs@ua.pt",
"url": "https://github.com/mynameisvasco"
},
"keywords": [
"tei",
"xml",
"editor",
"collaborative",
"charters"
],
"license": "MIT",
"homepage": "https://iforal.pt",
"type": "module",
"scripts": {
"package": "vite package",
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --plugin-search-dir . --check .",
"format": "prettier --plugin-search-dir . --write .",
"prisma:generate": "prisma generate",
"prisma:inline": "cp ./node_modules/.prisma/client/*.js ./node_modules/@prisma/client"
},
"devDependencies": {
"@rgossiaux/svelte-headlessui": "^1.0.2",
"@sveltejs/adapter-auto": "next",
"@sveltejs/adapter-node": "next",
"@sveltejs/kit": "next",
"@types/bcrypt": "^5.0.0",
"@types/ejs": "^3.1.1",
"@types/jsonwebtoken": "^8.5.8",
"autoprefixer": "^10.4.7",
"postcss": "^8.4.14",
"postcss-load-config": "^4.0.1",
"prettier": "^2.5.1",
"prettier-plugin-svelte": "^2.5.0",
"svelte": "^3.44.0",
"svelte-check": "^2.2.6",
"svelte-hero-icons": "^4.1.3",
"svelte-preprocess": "^4.10.6",
"tailwindcss": "^3.0.24",
"tslib": "^2.3.1",
"typescript": "~4.6.2"
},
"dependencies": {
"@codemirror/commands": "^6.0.1",
"@codemirror/lang-xml": "^6.0.0",
"@codemirror/lint": "^6.0.0",
"@codemirror/search": "^6.0.1",
"@codemirror/state": "^6.1.0",
"@codemirror/view": "^6.1.0",
"@prisma/client": "^4.14.1",
"@stdlib/string-utf16-to-utf8-array": "^0.0.8",
"@tailwindcss/forms": "^0.5.2",
"bcrypt": "^5.0.1",
"CETEIcean": "^1.8.0-beta.1",
"date-fns": "^2.28.0",
"ejs": "^3.1.8",
"jsonwebtoken": "^8.5.1",
"npm": "^8.10.0",
"prisma": "^4.14.1",
"superjson": "^1.11.0",
"svelte-keyboard": "^0.5.5",
"svelte-local-storage-store": "^0.2.6",
"vanilla-js-wheel-zoom": "^6.12.0",
"xml-formatter": "^2.6.1",
"yup": "^0.32.11"
}
}