-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1 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": "ERGON",
"version": "1.0.0",
"description": "Workflow management app",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node server.js"
},
"author": "Nithin K Shine",
"license": "ISC",
"dependencies": {
"axios": "^0.27.2",
"bcryptjs": "^2.4.3",
"compression": "^1.7.4",
"cookie-parser": "^1.4.6",
"cookies": "^0.8.0",
"dotenv": "^14.3.2",
"express": "^4.17.2",
"jsonwebtoken": "^8.5.1",
"mongoose": "^5.13.14",
"morgan": "^1.10.0",
"pug": "^3.0.2",
"slugify": "^1.6.5",
"validator": "^13.7.0"
},
"devDependencies": {
"eslint": "^8.8.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.28.0",
"prettier": "^2.5.1"
},
"engines": {
"node": ">=10.0.0"
}
}