-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.02 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
42
43
44
45
46
47
48
{
"name": "currency-api",
"version": "1.0.0",
"description": "NodeJS API for currency conversion",
"author": "Adriana Luchian",
"license": "MIT",
"homepage": "https://github.com/aluchian/currency-api#readme",
"main": "src/index.js",
"scripts": {
"lint": "eslint .",
"test": "jest --colors --passWithNoTests",
"start": "nodemon src/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aluchian/currency-api.git"
},
"devDependencies": {
"eslint": "~6.8.0",
"jest": "~25.1.0",
"nodemon": "~2.0.2",
"watch": "~1.0.2"
},
"jest": {
"rootDir": "src"
},
"eslintConfig": {
"env": {
"node": true,
"jest": true,
"es6": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"ignorePatterns": [
"node_modules/"
]
},
"dependencies": {
"body-parser": "~1.19.0",
"cors": "~2.8.5",
"express": "~4.17.1",
"node-graceful": "~3.0.0"
}
}