-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 804 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 804 Bytes
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
{
"name": "meal-recommender",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:mstephenhunt/meal-recommender.git",
"author": "Matt Hunt <[email protected]>",
"license": "MIT",
"engine": {
"node": ">=18.0.0"
},
"scripts": {
"lint-staged": "lint-staged",
"lint": "eslint \"**/*.{ts,tsx}\" --fix"
},
"lint-staged": {
"*.{js,ts,tsx}": [
"eslint \"**/*.{ts,tsx}\" --fix"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.47.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^8.0.3",
"prettier": "^3.0.1",
"typescript": "^4.7.4"
},
"dependencies": {
"lint-staged": "^13.3.0"
}
}