-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
94 lines (94 loc) · 2.59 KB
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
85
86
87
88
89
90
91
92
93
94
{
"name": "we-will-shine",
"version": "1.0.0",
"description": "Open source platform for student career guidance & wellbeing support with AI mentor - Built with love for Indonesian schools",
"author": "sandikodev <https://github.com/sandikodev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ITIF-Syuhada/we-will-shine.git"
},
"homepage": "https://itif-syuhada.github.io/we-will-shine/",
"bugs": {
"url": "https://github.com/ITIF-Syuhada/we-will-shine/issues"
},
"keywords": [
"education",
"career-guidance",
"mental-health",
"student-wellbeing",
"open-source",
"indonesia",
"islamic-education",
"sveltekit",
"tailwindcss",
"ai-chatbot"
],
"type": "module",
"scripts": {
"dev": "vite dev",
"build": "vite build",
"preview": "vite preview --base=/we-will-shine/",
"prepare": "svelte-kit sync || echo '' && simple-git-hooks",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
"format": "prettier --write .",
"lint": "prettier --check . && eslint .",
"test": "pnpm run check && pnpm run lint",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui"
},
"devDependencies": {
"@eslint/compat": "^1.4.0",
"@eslint/js": "^9.36.0",
"@fontsource/fira-mono": "^5.2.7",
"@neoconfetti/svelte": "^2.2.2",
"@playwright/test": "^1.56.0",
"@sveltejs/adapter-static": "^3.0.9",
"@sveltejs/kit": "^2.43.2",
"@sveltejs/vite-plugin-svelte": "^6.2.0",
"@tailwindcss/forms": "^0.5.10",
"@tailwindcss/postcss": "^4.1.14",
"@tailwindcss/typography": "^0.5.18",
"@tailwindcss/vite": "^4.1.14",
"@types/node": "^20",
"@types/qrcode": "^1.5.5",
"autoprefixer": "^10.4.21",
"dotenv": "^17.2.3",
"eslint": "^9.36.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-svelte": "^3.12.4",
"globals": "^16.4.0",
"lint-staged": "^16.2.4",
"postcss": "^8.5.6",
"prettier": "^3.6.2",
"prettier-plugin-svelte": "^3.4.0",
"prettier-plugin-tailwindcss": "^0.6.14",
"simple-git-hooks": "^2.13.1",
"supabase": "^2.51.0",
"svelte": "^5.39.5",
"svelte-check": "^4.3.2",
"tailwindcss": "^4.1.14",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1",
"vite": "^7.1.7"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint-staged",
"pre-push": "pnpm run test"
},
"lint-staged": {
"*.{js,ts,svelte}": [
"prettier --write",
"eslint --fix"
],
"*.{json,css,md}": [
"prettier --write"
]
},
"dependencies": {
"@supabase/supabase-js": "^2.75.0",
"qrcode": "^1.5.4"
}
}