-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
61 lines (61 loc) · 1.81 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
{
"name": "voting-system",
"version": "1.0.0",
"main": "app.js",
"author": "Jayke770",
"license": "MIT",
"dependencies": {
"@tensorflow/tfjs-node": "^3.11.0",
"@tsmx/human-readable": "^1.0.7",
"@vladmandic/face-api": "^1.5.7",
"base64-to-image": "^1.0.2",
"bcrypt": "^5.0.1",
"body-parser": "^1.19.0",
"canvas": "^2.8.0",
"chokidar": "^3.5.2",
"connect-mongodb-session": "^3.1.1",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"csurf": "^1.11.0",
"ejs": "^3.1.7",
"express": "^4.17.3",
"express-rate-limit": "^5.3.0",
"express-session": "^1.17.2",
"express-socket.io-session": "^1.3.5",
"fs-extra": "^10.0.0",
"generate-password": "^1.6.0",
"helmet": "^4.6.0",
"image-to-base64": "^2.2.0",
"io-session-handler": "^1.0.74",
"is-email": "^1.0.2",
"jimp": "^0.16.1",
"moment-timezone": "^0.5.35",
"mongoose": "^5.13.15",
"morgan": "^1.10.0",
"multer": "^1.4.2",
"nl2br": "^0.0.3",
"nodemailer": "^6.6.5",
"request-ip": "^2.1.3",
"rotating-file-stream": "^2.1.5",
"sanitize-filename": "^1.6.3",
"socket.io": "^4.1.2",
"systeminformation": "^5.9.13",
"ua-parser-js": "^0.7.33",
"uuid": "^8.3.2",
"xss": "^1.0.9"
},
"scripts": {
"build": "NODE_ENV=production npx tailwindcss -i ./tailwind/style.css -o ./public/css/tailwindcss/style.css --minify",
"devcss": "npx tailwindcss -i ./tailwind/style.css -o ./public/css/tailwindcss/style.css -w",
"start": "node app.js",
"dev": "nodemon app.js"
},
"devDependencies": {
"autoprefixer": "^10.4.0",
"dotenv": "^10.0.0",
"nodemon": "^2.0.15",
"postcss-cli": "^8.3.1",
"tailwindcss": "^2.2.19",
"tailwindcss-theme-variants": "^1.11.0-beta.1"
}
}