-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.13 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
{
"name": "paysera-task",
"version": "1.0.0",
"description": "",
"main": "app.js",
"scripts": {
"test": "jest",
"lint": "eslint --ignore-path .gitignore --ext .js .",
"prettier": "prettier --ignore-path .gitignore --write \"**/*.+(js|json)\"",
"format": "npm run prettier -- --write",
"check-format": "npm run prettier -- --list-different",
"dev": "nodemon --exec babel-node app.js",
"start": "babel-node app.js",
"validate": "npm-run-all --parallel check-format lint"
},
"author": "waliurjs",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/node": "^7.13.13",
"@babel/plugin-transform-runtime": "^7.13.15",
"@babel/preset-env": "^7.14.1",
"@types/jest": "^26.0.23",
"eslint": "^7.26.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.4.0",
"husky": "^6.0.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1"
},
"dependencies": {
"date-fns": "^2.21.3",
"node-fetch": "^2.6.1"
}
}