-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 879 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
{
"name": "dual-linting",
"version": "1.0.0",
"description": "",
"main": "app.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node-dev --respawn --transpile-only app.ts",
"lint": "eslint ./src --ext .js --ext .ts --fix -c ./.eslintrc.json --no-eslintrc",
"lint-staged": "lint-staged"
},
"lint-staged": {
"*.{js,ts,jsx,tsx}": [
"npm run lint",
"git add"
]
},
"keywords": [],
"author": "@gbpaixao - Gustavo Bezerra da Paixão",
"license": "ISC",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"husky": "^7.0.0",
"lint-staged": "^12.3.3",
"ts-node-dev": "^1.1.8",
"typescript": "^4.5.5"
}
}