-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"version": "1.0.0",
"name": "node-server",
"main": "server.js",
"license": "MIT",
"scripts": {
"start": "nodemon server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "nodemon server.js && npx tailwindcss -i ./public/css/tailwind.css -o ./public/css/index.css --watch"
},
"dependencies": {
"bcrypt": "*",
"bcrypt-nodejs": "^0.0.3",
"body-parser": "^1.18.3",
"connect-flash": "~0.1.1",
"connect-mongo": "^4.6.0",
"cookie-parser": "~1.4.3",
"dotenv": "^16.0.1",
"ejs": "^3.1.8",
"express": "^4.18.1",
"express-session": "^1.17.3",
"lodash": "^4.17.20",
"method-override": "~2.3.6",
"mongodb": "^4.7.0",
"mongoose": "^6.3.6",
"morgan": "^1.10.0",
"mpath": ">=0.5.1",
"nodemon": "^2.0.18",
"passport": "^0.6.0",
"passport-facebook": "~2.1.1",
"passport-google-oauth": "^2.0.0",
"passport-local": "~1.0.0",
"passport-twitter": "^0.1.5"
},
"devDependencies": {
"tailwindcss": "^3.0.24"
}
}