-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.03 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"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 nodemon index.js",
"prod": "NODE_ENV=production node index.js"
},
"repository": {
"type": "git",
"url": "git@gitlab.com:softsquared/template/api-server-node.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"cheerio": "^1.0.0-rc.12",
"compression": "^1.7.4",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"crypto": "^1.0.1",
"ejs": "^3.1.6",
"express": "^4.17.1",
"http": "^0.0.1-security",
"jsonwebtoken": "^8.5.1",
"method-override": "^3.0.0",
"morgan": "^1.10.0",
"mysql2": "^2.0.0",
"nodemailer": "^6.6.1",
"regex-email": "^1.0.2",
"socket.io": "^3.1.2",
"winston": "^3.2.1",
"winston-daily-rotate-file": "^4.2.1"
},
"devDependencies": {
"nodemon": "^2.0.15"
}
}