forked from Kwenta/kwenta
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.42 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "kwenta",
"version": "7.9.5",
"description": "Kwenta",
"main": "index.js",
"scripts": {
"check-types": "pnpm run --filter \"@kwenta/*\" check-types",
"prepare": "husky install",
"format": "prettier --write \"**/*.{ts,tsx}\"",
"lint": "eslint . --ext ts,.tsx && pnpm check-types",
"lint:fix": "eslint packages --ext ts,.tsx --fix",
"dev": "pnpm run --filter \"@kwenta/*\" --stream --parallel dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kwenta/kwenta.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/Kwenta/kwenta/issues"
},
"homepage": "https://github.com/Kwenta/kwenta#readme",
"husky": {
"hooks": {
"pre-commit": "pnpm lint"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "6.4.1",
"@typescript-eslint/parser": "6.4.1",
"eslint": "8.47.0",
"eslint-config-prettier": "8.10.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-cypress": "2.14.0",
"eslint-plugin-flowtype": "8.0.3",
"eslint-plugin-import": "2.28.1",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.33.2",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-testing-library": "5.11.1",
"eslint-plugin-ui-testing": "2.0.1",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"prettier": "2.8.8",
"typescript": "5.1.6"
}
}