-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
50 lines (50 loc) · 1.14 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
{
"name": "provider-web",
"private": true,
"workspaces": [
"./packages/*"
],
"engines": {
"npm": ">=7.0.0"
},
"scripts": {
"dev": "vite",
"lint": "eslint --ext .ts,.tsx ./packages/*/src"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"packages/**/*.ts?(x)": [
"eslint --fix",
"prettier --write"
]
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@vitejs/plugin-legacy": "^1.2.3",
"@vitejs/plugin-react-refresh": "^1.2.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-react": "^7.22.0",
"eslint-plugin-react-hooks": "^4.2.0",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3",
"vite": "^2.0.0-beta.62"
},
"version": "1.0.5",
"dependencies": {
"@waves/node-api-js": "^1.2.4"
}
}