-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "mutorials.org",
"version": "0.0.0",
"scripts": {
"start": "node index.js",
"dev": "run-p dev:*",
"dev:sync": "browser-sync start --no-notify --no-open --proxy=localhost:3000 --port=3001 --files=\"**/*\" --reload-delay=100",
"dev:express": "nodemon index.js",
"dev:css": "tailwindcss -i public/css/tailwind.css -o public/css/style.css --watch",
"build": "tailwindcss -i ./public/css/tailwind.css -o ./public/css/style.css",
"lint": "eslint . --ext .js"
},
"engines": {
"node": "22.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/The-Mu-Foundation/Mutorials.git"
},
"dependencies": {
"-": "^0.0.1",
"autoprefixer": "^10.4.14",
"bad-words": "^3.0.4",
"bcryptjs": "^2.4.3",
"body-parser": "^1.19.0",
"browser-sync": "^2.29.3",
"connect-flash": "^0.1.1",
"connect-mongo": "^3.2.0",
"cookie-parser": "^1.4.5",
"crypto": "^1.0.1",
"D": "^1.0.0",
"debug": "~2.6.9",
"ejs": "^3.1.6",
"express": "^4.18.2",
"express-ejs-layouts": "^2.5.1",
"express-flash-messages": "^0.1.1",
"express-session": "^1.17.2",
"express-sslify": "^1.2.0",
"express-validator": "^6.12.2",
"hcaptcha": "0.0.2",
"heroku-ssl-redirect": "^0.1.1",
"html": "^1.0.0",
"http-errors": "^1.8.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.16",
"nanoid": "^3.1.31",
"node-fetch": "^2.6.7",
"nodemailer": "^6.6.5",
"nodemon": "^2.0.22",
"passport": "^0.4.1",
"passport-local": "^1.0.0",
"passport-local-mongoose": "^6.1.0",
"pg": "^7.18.2",
"pluralize": "^8.0.0",
"postcss": "^8.4.26",
"postcss-cli": "^10.1.0",
"tailwind": "^4.0.0",
"tailwindcss": "^3.4.12"
},
"devDependencies": {
"@tailwindcss/forms": "^0.5.4",
"dotenv": "^16.3.1",
"eslint": "^7.28.0",
"npm-run-all": "^4.1.5",
"postcss-import": "^15.1.0"
}
}