-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "pine-beetle-backend",
"version": "3.0.0",
"description": "",
"author": "",
"main": "src/server.js",
"scripts": {
"lint": "eslint src",
"dev": "nodemon src/server.js --exec \"yarn lint && babel-node\"",
"start": "babel-node src/server.js",
"clean": "rm -rf dist/",
"build": "yarn clean; babel src -d dist --copy-files --no-copy-ignored",
"prod": "yarn build; node dist/server.js"
},
"license": "ISC",
"engines": {
"node": ">=16 <=18"
},
"nodemonConfig": {
"signal": "SIGHUP",
"delay": "1500"
},
"dependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/eslint-parser": "^7.19.1",
"@babel/node": "^7.10.5",
"@babel/preset-env": "^7.11.5",
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"dotenv": "^8.2.0",
"express": "^4.16.3",
"firebase-admin": "^12.0.0",
"jwt-simple": "^0.5.6",
"mongoose": "^6.10.4",
"morgan": "^1.9.0",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.6.1",
"passport": "^0.6.0",
"passport-jwt": "^4.0.0"
},
"devDependencies": {
"eslint": "^8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "^2.25.2",
"nodemon": "^2.0.4"
}
}