-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.68 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
56
57
58
59
60
61
62
{
"name": "@rootsher/react-core",
"version": "0.2.0",
"description": "Core library for React projects",
"main": "dist/lib/index.js",
"types": "dist/lib/index.d.ts",
"repository": "[email protected]:rootsher/react-core.git",
"author": "Konrad Kowalski <[email protected]>",
"license": "MIT",
"private": false,
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "husky install",
"prepublish": "yarn build"
},
"dependencies": {
"@testing-library/user-event": "^14.4.2",
"date-fns": "^2.29.1",
"i18next": "^21.8.16",
"lodash": "^4.17.21",
"qs": "^6.10.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-i18next": "^11.18.3",
"whatwg-fetch": "^3.6.2"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.4",
"@testing-library/react": "^13.3.0",
"@types/jest": "^28.1.2",
"@types/lodash": "^4.14.182",
"@types/node": "^18.0.0",
"@types/qs": "^6.9.7",
"@types/react": "^18.0.14",
"@types/react-dom": "^18.0.5",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"husky": ">=6",
"jest": "^28.1.1",
"jest-environment-jsdom": "^28.1.1",
"lint-staged": ">=10",
"prettier": "^2.7.1",
"ts-jest": "^28.0.5",
"typescript": "^4.7.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"setupFilesAfterEnv": [
"<rootDir>/setupTests.ts"
]
},
"lint-staged": {
"*.{ts,tsx,js,jsx}": "eslint --cache --fix",
"*.{ts,tsx,js,jsx,md}": "prettier --write"
}
}