-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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": "cryptocurrencies-monitor",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"start": "BABEL_DISABLE_CACHE=1 nodemon src/index.js --exec babel-node -e js",
"test": "jest --runInBand --forceExit",
"lint": "eslint . --ext .js",
"lint-fix": "eslint . --ext .js --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.21.4",
"bcryptjs": "^2.4.3",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"express-jwt": "^6.1.0",
"jsonwebtoken": "^8.5.1",
"mongoose": "^6.0.5",
"mongoose-unique-validator": "^2.0.3"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.7",
"@babel/node": "^7.8.7",
"@babel/preset-env": "^7.8.7",
"@shelf/jest-mongodb": "^2.0.3",
"babel-jest": "^25.4.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^27.2.0",
"mongodb-memory-server": "^6.5.2",
"nodemon": "^2.0.7",
"supertest": "^6.1.6"
}
}