-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 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
{
"name": "@baseapp-frontend/authentication",
"description": "Authentication modules.",
"version": "3.0.1",
"main": "./dist/index.ts",
"module": "./dist/index.mjs",
"scripts": {
"build": "tsc --build",
"dev": "tsc --watch",
"test": "jest --config ./jest.config.ts",
"lint": "eslint . --ext .tsx --ext .ts && tsc --noEmit",
"clean": "rm -rf .turbo && rm -rf node_modules && rm -rf dist"
},
"dependencies": {
"@baseapp-frontend/provider": "*",
"@baseapp-frontend/utils": "*",
"@hookform/resolvers": "^3.6.0",
"@tanstack/react-query": "^5.45.1",
"js-cookie": "^3.0.5",
"react-hook-form": "^7.51.5",
"zod": "^3.23.8"
},
"peerDependencies": {
"@baseapp-frontend/provider": "*",
"@baseapp-frontend/utils": "*",
"react": "^18.3.1"
},
"devDependencies": {
"@baseapp-frontend/config": "*",
"@baseapp-frontend/test": "*",
"@baseapp-frontend/tsconfig": "*",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"@types/humps": "^2.0.6",
"@types/jest": "^29.5.12",
"@types/js-cookie": "^3.0.6",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/silverlogic/baseapp-frontend.git",
"directory": "packages/authentication"
},
"bugs": {
"url": "https://github.com/silverlogic/baseapp-frontend/issues"
},
"publishConfig": {
"access": "public"
}
}