-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.32 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.32 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
{
"name": "cavelizer-heroku",
"version": "1.0.0",
"description": "Heroku looks on this package json to install dependencies",
"main": "index.js",
"scripts": {
"install": "cd api && npm install && cd .. && cd frontend && npm install --legacy-peer-deps",
"start:api": "cd api && npm run start",
"start:frontend": "cd frontend && npm run start",
"build:frontend": "cd frontend && npm run build",
"heroku:start": "cd api && npm run swagger && node server.js",
"format:check": "prettier --check \"**/*.{js,jsx,yml,yaml,json,css,scss,md}\"",
"format": "prettier --write \"**/*.{js,jsx,yml,yaml,json,css,scss,md}\""
},
"keywords": [
"cavelizer",
"recodenized"
],
"author": "Sorin Vestemean",
"license": "ISC",
"dependencies": {
"body-parser": "^1.20.0",
"cookie-session": "^2.0.0",
"cors": "^2.8.5",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-session": "^1.17.3",
"http-status-codes": "^2.2.0",
"joi": "^17.6.0",
"jsonwebtoken": "^8.5.1",
"jwt-decode": "^3.1.2",
"mongoose": "^6.3.8",
"mongoose-to-swagger": "^1.4.0",
"morgan": "^1.10.0",
"nodemon": "^2.0.18",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0",
"swagger-autogen": "^2.21.4",
"swagger-ui-express": "^4.4.0"
},
"engines": {
"node": "14.x"
}
}