-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.56 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.56 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
53
54
55
56
57
{
"name": "nomad",
"description": "e-travel website",
"version": "1.0.0",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node backend/server",
"server": "nodemon backend/server",
"client": "npm start --prefix frontend",
"dev": "concurrently \"npm run server\" \"npm run client\"",
"data:import": "node backend/seeder",
"data:destroy": "node backend/seeder -d"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arundhati-bala/nomad.git"
},
"author": "ams",
"license": "ISC",
"dependencies": {
"axios": "^0.24.0",
"bcryptjs": "^2.4.3",
"bootstrap-icons": "^1.7.2",
"colors": "^1.4.0",
"connect-mongo": "^4.6.0",
"cookie-parser": "^1.4.6",
"dotenv": "^10.0.0",
"express": "^4.17.2",
"express-async-handler": "^1.2.0",
"fuse.js": "^6.5.3",
"google-auth-library": "^7.11.0",
"googleapis": "^92.0.0",
"jsonwebtoken": "^8.5.1",
"mapbox-gl": "^1.13.2",
"moment": "^2.29.1",
"mongoose": "^6.1.3",
"morgan": "^1.10.0",
"passport": "^0.5.2",
"passport-google-oauth": "^2.0.0",
"passport-google-oauth20": "^2.0.0",
"react-animate-on-scroll": "^2.1.5",
"react-backdrop-filter": "^2.1.0",
"react-mapbox-gl": "^5.1.1",
"react-redux": "^7.2.6",
"react-reveal": "^1.2.2"
},
"bugs": {
"url": "https://github.com/arundhati-bala/nomad/issues"
},
"homepage": "https://github.com/arundhati-bala/nomad#readme",
"devDependencies": {
"concurrently": "^6.5.1",
"gh-pages": "^3.2.3",
"nodemon": "^2.0.15"
}
}