-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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": "@baseapp-frontend/authentication",
"description": "Authentication modules.",
"version": "2.1.3",
"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": "^2.9.7",
"@tanstack/react-query": "^4.29.12",
"js-cookie": "^3.0.5",
"react": "^18.2.0",
"react-hook-form": "^7.46.1",
"zod": "^3.22.3"
},
"devDependencies": {
"@baseapp-frontend/config": "*",
"@baseapp-frontend/test": "*",
"@baseapp-frontend/tsconfig": "*",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/humps": "^2.0.2",
"@types/jest": "^29.5.4",
"@types/js-cookie": "^3.0.3",
"@types/react": "^18.2.24",
"@types/react-dom": "^18.2.10",
"babel-jest": "^29.4.0",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.4.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"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"
}
}