-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 1005 Bytes
/
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
{
"name": "goit-wallet-app-03-backend",
"version": "0.1.0",
"private": true,
"scripts": {
"start": "cross-env NODE_ENV=production node ./app.js",
"start:dev": "cross-env NODE_ENV=development nodemon ./app.js",
"lint": "eslint **/*.js",
"lint:fix": "eslint --fix **/*.js"
},
"dependencies": {
"axios": "^1.4.0",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-validator": "^7.0.1",
"jsonwebtoken": "^9.0.1",
"log4js": "^6.9.1",
"moment": "^2.29.4",
"mongoose": "^7.4.0",
"swagger-jsdoc": "^6.2.8",
"swagger-ui-express": "^5.0.0",
"uuid": "^9.0.0",
"validator": "^13.9.0"
},
"devDependencies": {
"eslint": "^7.19.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"nodemon": "^2.0.15"
}
}