forked from aguaholic/holiday-planner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.47 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
{
"name": "server",
"version": "1.0.0",
"description": "holiday planner server",
"type": "module",
"main": "index.js",
"proxy": "http://localhost:3000",
"engines": {
"node": "16.14.2"
},
"scripts": {
"lint": "eslint '**/*.js'",
"lint-watch": "nodemon --exec 'npm run lint --silent'",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "cd client && npm run build",
"install-client": "cd client && npm install",
"heroku-postbuild": "npm run install-client && npm run build",
"server": "nodemon index.js",
"develop": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\"",
"start": "concurrently --kill-others-on-fail \"npm run server\" \"npm run start --prefix client\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/aguaholic/holiday-planner.git"
},
"keywords": [
"holiday",
"fun",
"booking"
],
"author": "Jids",
"license": "ISC",
"bugs": {
"url": "https://github.com/aguaholic/holiday-planner/issues"
},
"homepage": "https://github.com/aguaholic/holiday-planner#readme",
"dependencies": {
"axios": "^1.1.3",
"concurrently": "^7.6.0",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"google-auth-library": "^8.7.0",
"jsonwebtoken": "^8.5.1",
"mongodb": "^4.12.0",
"nodemon": "^2.0.20",
"react-google-login": "^5.2.2"
},
"devDependencies": {
"eslint-config-salt": "^1.2.0"
}
}