-
Notifications
You must be signed in to change notification settings - Fork 151
/
package.json
38 lines (38 loc) · 962 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
34
35
36
37
38
{
"name": "js-routes",
"version": "1.0.0",
"main": "index.js",
"repository": "[email protected]:railsware/js-routes.git",
"author": "Bogdan Gusiev <[email protected]>, Alexey Vasiliev <https://leopard.in.ua> ",
"license": "MIT",
"private": false,
"devDependencies": {
"typescript": "^4.1.2"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-import": "^2.27.5",
"husky": "^4.3.0",
"lint-staged": "^10.5.2",
"pinst": "^2.1.1",
"prettier": "^2.8.4"
},
"scripts": {
"build": "tsc && yarn lint:fix",
"lint:fix": "yarn eslint --fix && yarn prettier --write lib/routes.ts",
"postinstall": "yarn husky-upgrade"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:fix"
}
},
"lint-staged": {
"./lib/routes.ts": [
"yarn lint:fix"
]
}
}