-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1.07 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
{
"name": "od-dashboard",
"version": "1.0.0",
"main": "index.js",
"type": "module",
"repository": "https://github.com/OngDev/od-dashboard.git",
"author": "Duy Nguyen <[email protected]>",
"license": "MIT",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"lint": "eslint public/*.js src/*.js index.js",
"lint-fix": "eslint public/*.js src/*.js index.js --fix"
},
"dependencies": {
"axios": "^0.21.1",
"cors": "^2.8.5",
"cron": "^1.8.2",
"dotenv": "^8.2.0",
"express": "^4.17.1",
"helmet": "^4.4.1",
"moment": "^2.29.1",
"monk": "^7.3.3",
"monk-middleware-wrap-non-dollar-update": "^0.2.1",
"morgan": "^1.10.0",
"node-color-log": "^5.2.0",
"nodemailer": "^6.5.0",
"yup": "^0.32.9"
},
"devDependencies": {
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.9.0",
"nodemon": "^2.0.7",
"prettier": "^2.2.1"
}
}