-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.31 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.31 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
{
"name": "backend",
"version": "1.0.0",
"description": "",
"main": "server.js",
"scripts": {
"start": "env-cmd -f ./.env nodemon --inspect src/server.js",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf dist/ && babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-console.log.log --copy-files",
"build:prod": "babel ./ --out-dir dist/ --ignore ./node_modules,./.babelrc,./package.json,./npm-console.log.log --copy-files",
"start:dev": "npm run build && node dist/src/server.js",
"start:prod": "node dist/src/server.js",
"dev": "nodemon --exec babel-node src/server.js",
"pm2": "yarn build && yarn pm2:start",
"pm2:start": "pm2 start ecosystem.config.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@hapi/joi": "^17.1.1",
"babel-cli": "^6.26.0",
"bcryptjs": "^2.4.3",
"cookie-parser": "^1.4.5",
"cors": "^1.0.1",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"jsonwebtoken": "^8.5.1",
"moment": "^2.29.1",
"mongodb": "^3.6.5",
"mongoose": "^5.12.1",
"morgan": "^1.10.0",
"nodemailer": "^6.5.0",
"p-queue": "^4.0.0",
"path": "^0.12.7",
"puppeteer": "^9.0.0",
"validator": "^13.5.2"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"nodemon": "^2.0.7"
}
}