-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 3.94 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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"scripts": {
"start": "ts-node ./server/server.ts",
"start:watch": "nodemon ./server/server.ts",
"manager": "ts-node -P tsconfig.json ./scripts/manager.ts",
"build:watch": "nodemon ./scripts/esbuild.ts",
"build": "ts-node ./scripts/esbuild.ts",
"test:backend": "ts-node ./scripts/tests/all-tests.ts",
"test:e2e": "ts-node ./scripts/tests/e2e.ts",
"lint": "eslint **/*.{svelte,ts} --fix",
"fmt": "prettier . --write",
"init": "ts-node ./scripts/init.ts",
"dev": "concurrently --kill-others \"npm run start\" \"npm run build:watch\"",
"encrypt-backup": "ts-node ./scripts/encrypt-backup.ts",
"backup": "ts-node ./scripts/backup-db.ts",
"restore": "ts-node ./scripts/restore-db.ts"
},
"devDependencies": {
"@popperjs/core": "^2.11.8",
"@tsconfig/deno": "^1.0.9",
"@tsconfig/svelte": "^5.0.2",
"@types/bad-words": "^3.0.3",
"@types/busboy": "^1.5.3",
"@types/callsite": "^1.0.34",
"@types/datatables.net-fixedheader": "^3.1.8",
"@types/express-session": "^1.18.0",
"@types/fuzzy-search": "^2.1.5",
"@types/inquirer": "^9.0.7",
"@types/jquery": "^3.5.29",
"@types/keypress": "^2.0.30",
"@types/multer": "^1.4.11",
"@types/node": "^20.11.24",
"@types/nodemailer": "^6.4.14",
"@types/nodemon": "^1.19.6",
"@types/objects-to-csv": "^1.3.3",
"@types/pg": "^8.11.2",
"@types/prompt": "^1.1.8",
"@types/prompts": "^2.4.9",
"@types/uuid": "^9.0.8",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"callsite": "^1.0.0",
"concurrently": "^8.2.2",
"esbuild": "^0.20.1",
"esbuild-sass-plugin": "^3.2.0",
"eslint": "^8.57.0",
"eslint-plugin-svelte": "^2.43.0",
"prettier": "^3.2.2",
"prettier-plugin-svelte": "^3.1.2",
"svelte": "^4.2.19",
"svelte-check": "^3.6.3",
"svelte-eslint-parser": "^0.41.0",
"svelte-preprocess-esbuild": "^3.0.1",
"svelte-recaptcha-v2": "^0.0.2",
"tslib": "^2.6.2",
"typescript": "^5.5.4"
},
"dependencies": {
"@beyowi/svelte-recaptcha-v2": "^0.0.4",
"@craftamap/esbuild-plugin-html": "^0.6.1",
"@fortawesome/fontawesome-free": "^6.5.1",
"@neoxia-js/nodemailer-sendgrid-transport": "^0.1.1",
"@putout/cli-choose": "^2.0.0",
"@types/bootstrap": "^5.2.10",
"@types/cli-progress": "^3.11.6",
"@types/jqueryui": "^1.12.21",
"@types/nodemailer-sendgrid": "^1.0.3",
"axios": "^1.6.7",
"bad-words": "^3.0.4",
"bootstrap": "^5.3.3",
"bootstrap-icons": "^1.11.3",
"busboy": "^1.6.0",
"chart.js": "^4.4.2",
"cli-progress": "^3.12.0",
"cli-select": "^1.1.2",
"cliffy": "^2.5.1",
"deep-email-validator": "^0.1.21",
"directory-tree": "^3.5.1",
"discord.js": "^14.15.2",
"dotenv": "^16.4.5",
"esbuild-svelte": "^0.8.0",
"express": "^4.18.3",
"express-session": "^1.18.0",
"fuzzy-search": "^3.2.1",
"icons": "^1.0.0",
"inquirer": "^9.2.15",
"jest": "^29.7.0",
"jquery": "^3.7.1",
"keypress": "^0.2.1",
"material-icons": "^1.13.12",
"multer": "^1.4.5-lts.1",
"node-html-constructor": "^4.0.3",
"nodemailer": "^6.9.11",
"nodemailer-sendgrid-transport": "^0.2.0",
"nodemon": "^3.1.0",
"objects-to-csv": "^1.3.6",
"pg": "^8.11.3",
"prompt": "^1.3.0",
"prompts": "^2.4.2",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"svelte-chartjs": "^3.1.5",
"systeminformation": "^5.23.5",
"test": "^3.3.0",
"ts-node": "^10.9.2",
"uuid": "^9.0.1",
"webcam-easy": "^1.1.1"
}
}