-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.01 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
{
"name": "express-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"engines": {
"node": ">=14.20.1"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node src/index.js",
"dev": "nodemon src/index.js",
"build": "babel src -d build",
"build:clean": "rm -fr build",
"prebuild": "npm run build:clean",
"start:prod": "npm run build && node./build/index.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/plugin-transform-runtime": "^7.22.9",
"@sendgrid/mail": "^7.7.0",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^6.7.0",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.3.1"
},
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"babel-loader": "^9.1.3",
"nodemon": "^3.0.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}