-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
33 lines (33 loc) · 946 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
{
"name": "eslint-airbnb-base-typescript",
"version": "1.0.0",
"description": "Example app using eslint, prettier, airbnb-base, and typescript",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"lint": "eslint --fix . && prettier --write ."
},
"keywords": [
"prettier",
"eslint",
"eslint-config-airbnb-base",
"typescript",
"linters",
"formatters"
],
"author": "Erik Nielsen <[email protected]>",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"prettier": "^3.5.0",
"typescript": "^5.7.3"
}
}