-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.65 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
{
"name": "tripadvisor_mini_clone",
"version": "1.0.0",
"description": "tripadvisor clone app",
"main": "index.js",
"type": "module",
"scripts": {
"sass-frontend": "node-sass --watch frontend/content.scss -o frontend/",
"nodemon": "nodemon server.js -e *js,scss,html,njk",
"watch-sass": "node-sass --watch public/styles/content.scss -o public/css/",
"dev": "npm run watch-sass & npm run nodemon",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mustachemo/tripadvisor_mini_clone.git"
},
"keywords": [
"tripadvisor",
"clone",
"theodinproject",
"top",
"expressjs",
"nodejs"
],
"author": "mustachemo",
"license": "ISC",
"bugs": {
"url": "https://github.com/mustachemo/tripadvisor_mini_clone/issues"
},
"homepage": "https://github.com/mustachemo/tripadvisor_mini_clone#readme",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.28.1",
"nodemon": "^3.0.1"
},
"dependencies": {
"bcryptjs": "^2.4.3",
"body-parser": "^1.20.2",
"connect-flash": "^0.1.1",
"cors": "^2.8.5",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-session": "^1.17.3",
"joi": "^17.10.1",
"lodash": "^4.17.21",
"minireset.css": "^0.0.7",
"mongodb": "^5.7.0",
"mongoose": "^7.4.2",
"morgan": "^1.10.0",
"multer": "^1.4.5-lts.1",
"node-sass": "^9.0.0",
"nunjucks": "^3.2.4",
"passport": "^0.6.0",
"passport-local": "^1.0.0",
"sharp": "^0.32.5",
"url": "^0.11.1"
}
}