-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·78 lines (78 loc) · 2.2 KB
/
package.json
File metadata and controls
executable file
·78 lines (78 loc) · 2.2 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
{
"name": "jdrpolyweb",
"version": "2.1",
"scripts": {
"dev": "env-cmd -f dev.env vite dev",
"start": "NODE_OPTIONS='-r dotenv/config' node server.js",
"build": "env-cmd -f build.env vite build",
"package": "vite package",
"preview": "env-cmd vite preview",
"migrator": "node -r dotenv/config migrator.js",
"check": "svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-check --tsconfig ./tsconfig.json --watch",
"lint": "prettier --check src && eslint src",
"format": "prettier --write --plugin-search-dir=. ."
},
"devDependencies": {
"@iconify/svelte": "^3.1.4",
"@sveltejs/adapter-auto": "^3.1.1",
"@sveltejs/adapter-node": "^4.0.1",
"@sveltejs/kit": "^2.5.0",
"@types/node-cron": "^3.0.7",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"autoprefixer": "^10.4.16",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-svelte": "^2.35.1",
"postcss": "^8.4.32",
"postcss-load-config": "^5.0.2",
"prettier": "^3.2.5",
"prettier-plugin-svelte": "^3.1.2",
"prettier-plugin-tailwindcss": "^0.5.9",
"sass": "^1.55.0",
"svelte": "^4.2.19",
"svelte-check": "^3.6.4",
"svelte-headless-table": "^0.18.2",
"svelte-preprocess": "^5.1.3",
"svelte-turnstile": "^0.5.0",
"tailwindcss": "^3.3.6",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"type": "module",
"dependencies": {
"@types/bcrypt": "^5.0.0",
"@types/cookie": "^0.5.1",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^8.3.4",
"axios": "^1.7.4",
"bcrypt": "^5.0.1",
"bits-ui": "^0.18.6",
"clsx": "^2.1.0",
"compressorjs": "^1.2.1",
"cookie": "^0.5.0",
"date-picker-svelte": "^2.12.0",
"dotenv": "^16.0.3",
"env-cmd": "^10.1.0",
"es-main": "^1.3.0",
"express": "^4.18.2",
"googleapis": "^171.4.0",
"jsdoc": "^4.0.2",
"lucide-svelte": "^0.330.0",
"node-cron": "^3.0.2",
"node-gyp": "^9.0.0",
"node-schedule": "^2.1.0",
"nodemailer": "^6.7.7",
"pg": "^8.11.3",
"pg-hstore": "^2.3.4",
"pg-promise": "^10.11.1",
"sequelize": "^6.35.1",
"tailwind-merge": "^2.2.1",
"tailwind-variants": "^0.2.0",
"umzug": "^3.4.0",
"uuid": "^8.3.2",
"winston": "^3.8.2",
"winston-daily-rotate-file": "^4.7.1"
}
}