-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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": "food-order-lifetime-expenses",
"version": "2.0.0",
"description": "A simple node script that calculates the total amount spent on food ordering services, based in Greece.",
"main": "index.js",
"scripts": {
"node:env": "node -r dotenv/config index.js",
"calculate": "yarn node:env",
"clean": "rm -rf node_modules",
"test": "BABEL_ENV=test jest"
},
"author": "Panagiotis Papadatis <ppapadatis@gmail.com>",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ppapadatis/food-order-lifetime-expenses"
},
"dependencies": {
"axios": "1.1.3",
"date-fns": "2.29.3",
"dotenv": "14.3.0",
"lodash": "4.17.21",
"minimist": "1.2.7"
},
"devDependencies": {
"@babel/core": "7.20.2",
"@babel/plugin-transform-modules-commonjs": "7.19.6",
"@babel/preset-env": "7.20.2",
"babel-jest": "29.2.2",
"eslint": "8.2.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-jest": "27.1.4",
"husky": "8.0.1",
"jest": "27.4.7",
"lint-staged": "13.0.3",
"prettier": "2.7.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": "eslint --quiet"
}
}