-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 887 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
38
39
{
"name": "exchange_rates",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "NODE_ENV=production node index",
"dev": "nodemon index",
"test": "NODE_ENV=test jest",
"lint": "eslint .",
"precommit": "npm run lint",
"ci": "npm run precommit && npm test"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^0.19.0",
"big.js": "^5.2.2",
"dotenv": "^8.0.0",
"express": "^4.17.1",
"fastest-validator": "^0.6.17",
"morgan": "^1.9.1",
"redis": "^2.8.0"
},
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.3",
"husky": "^0.14.3",
"jest": "^24.8.0",
"nodemon": "^1.19.1",
"supertest": "^4.0.2"
},
"jest": {
"setupFiles": [
"<rootDir>/__mocks__/cache_client.js"
]
}
}