-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.27 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
{
"name": "api-server-node",
"version": "1.0.0",
"description": "Node.js API Server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "NODE_ENV=development node index.js",
"prod": "NODE_ENV=production node index.js",
"start": "nodemon --exec babel-node index.js"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.22.6",
"@babel/node": "^7.22.6",
"@babel/preset-env": "^7.22.6",
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"compression": "^1.7.4",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"crypto-js": "^4.1.1",
"dayjs": "^1.11.9",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"jsonwebtoken": "^9.0.1",
"method-override": "^3.0.0",
"multer": "^1.4.5-lts.1",
"mysql2": "^2.0.0",
"node-schedule": "^2.1.1",
"nodemailer": "^6.9.4",
"pg": "^8.11.1",
"regex-email": "^1.0.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"nodemon": "^2.0.22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/O-dar/O-dar-Node.git"
},
"bugs": {
"url": "https://github.com/O-dar/O-dar-Node/issues"
},
"homepage": "https://github.com/O-dar/O-dar-Node#readme"
}