-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.46 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.46 KB
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
{
"name": "travelplanner",
"version": "1.0.0",
"description": "Travel Planner",
"main": "server.js",
"type": "module",
"repository": "https://github.com/NikhilMahashabde/Travel-Planner/",
"author": "Render Developers",
"license": "MIT",
"private": false,
"scripts": {
"start": "node server.js",
"dev": "nodemon server",
"build": "npm run clean && npm run build:pug && npm run build:scss && npm run build:scripts && npm run build:assets",
"build:assets": "node scripts/build-assets.js",
"build:pug": "node scripts/build-pug.js",
"build:scripts": "node scripts/build-scripts.js",
"build:scss": "node scripts/build-scss.js",
"clean": "node scripts/clean.js",
"start:debug": "npm run build && node scripts/start-debug.js"
},
"dependencies": {
"bcrypt": "^5.1.0",
"bootstrap": "5.2.3",
"connect-mongo": "^5.0.0",
"dot-env": "^0.0.1",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-openid-connect": "^2.16.0",
"express-session": "^1.17.3",
"mongodb": "5.6",
"mongoose": "^7.3.0",
"nodemon": "^2.0.22",
"openai": "^3.3.0",
"startbootstrap-grayscale": "^7.0.6"
},
"engines": {
"node": ">=14"
},
"devDependencies": {
"autoprefixer": "10.4.14",
"browser-sync": "2.29.1",
"chokidar": "3.5.3",
"concurrently": "6.3.0",
"postcss": "8.4.21",
"prettier": "2.8.6",
"pug": "3.0.2",
"sass": "1.60.0",
"shelljs": "0.8.5",
"upath": "2.0.1"
}
}