-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
51
52
53
54
{
"name": "portfolio-backend",
"version": "1.0.0",
"description": "Backend Server for My Main Portfolio Website.",
"main": "api/app.js",
"scripts": {
"start": "set NODE_ENV=production && node index.js",
"dev": "set NODE_ENV=development && nodemon index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tks18/portfolio-backend.git"
},
"keywords": [
"backend",
"nodejs",
"portfolio"
],
"author": "tks18",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/tks18/portfolio-backend/issues"
},
"homepage": "https://api.shaaan.tk",
"dependencies": {
"axios": "^0.21.1",
"bcrypt": "^5.0.0",
"body-parser": "^1.19.0",
"crypto-js": "^4.0.0",
"dotenv": "^8.2.0",
"ejs": "^3.1.5",
"express": "^4.17.1",
"express-mongo-sanitize": "^2.0.2",
"helmet": "^4.4.1",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.11.10",
"nodemailer": "^6.4.17",
"xss-clean": "^0.1.1"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-google": "^0.14.0",
"eslint-config-nodejs": "^2.0.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.23.2",
"eslint-plugin-react-hooks": "^4.2.0"
}
}