-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 833 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
{
"name": "typescript-eslint-prettier-starter",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "npm run lint:json && npm run lint:ts",
"lint:json": "prettier --list-different .eslintrc *.json",
"lint:ts": "eslint --ext .js,.ts --ignore-path .gitignore .",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.2.0",
"@typescript-eslint/parser": "^2.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.3.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-prettier": "^3.1.0",
"prettier": "^1.18.2",
"typescript": "^3.6.3"
},
"dependencies": {},
"description": ""
}