-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 2.12 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
{
"name": "svelte-login-form",
"version": "0.0.1",
"license": "BSD-3-Clause",
"author": "Rodney Lab <ask@rodneylab.com> (@rodneyLab)",
"description": "Svelte login form example 📝 signup and login forms for your Svelte app with password strength meter 🔐 and strong password auto generation.",
"private": true,
"scripts": {
"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",
"prisma:generate": "prisma generate",
"prisma:migrate": "prisma migrate dev",
"lint": "prettier --plugin=prettier-plugin-svelte --check . && eslint .",
"lint:css": "stylelint \"src/**/*.{css,svelte}\"",
"format": "prettier --plugin=prettier-plugin-svelte --write .",
"check:formatting": "prettier --check --plugin=prettier-plugin-svelte ."
},
"devDependencies": {
"@commitlint/config-conventional": "^19.6.0",
"@js-temporal/polyfill": "^0.4.4",
"@prisma/client": "^6.1.0",
"@sveltejs/adapter-auto": "^3.3.1",
"@sveltejs/kit": "^2.15.1",
"@sveltejs/vite-plugin-svelte": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"@zxcvbn-ts/core": "^3.0.4",
"@zxcvbn-ts/language-common": "^3.0.4",
"@zxcvbn-ts/language-en": "^3.0.2",
"argon2": "^0.41.1",
"commitlint": "^19.6.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-svelte": "^2.46.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"postcss-html": "^1.7.0",
"prettier": "^3.4.2",
"prettier-plugin-svelte": "^3.3.2",
"prisma": "^6.1.0",
"stylelint": "^16.12.0",
"stylelint-config-recommended": "^14.0.1",
"stylelint-config-standard": "^36.0.1",
"svelte": "^5.16.0",
"svelte-check": "^4.1.1",
"tslib": "^2.8.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.2",
"vite": "^6.0.6",
"vite-node": "^2.1.8"
},
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/rodneylab/svelte-login-form"
},
"bugs": {
"url": "https://github.com/rodneylab/svelte-login-form/issues"
}
}