-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.39 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.39 KB
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
{
"name": "@barksh-ui/authentication-browser",
"private": true,
"version": "1.0.0",
"description": "Browser UI for Bark Authentication",
"scripts": {
"dev": "export VITE_MODULE_AUTHENTICATION_HOST=\"http://localhost:4000\" && vite",
"build": "tsc && vite build",
"preview": "vite preview"
},
"dependencies": {
"@barksh/authentication-types": "^1.1.0",
"@barksh/bark-design-react": "^1.8.3",
"@barksh/client-authenticator-browser": "^1.3.1",
"@sudoo/internationalization": "^2.0.0",
"@sudoo/internationalization-react": "^1.5.0",
"@sudoo/magic": "^1.9.0",
"@sudoo/react-force": "^2.0.0",
"connor": "^2.9.0",
"react-icons": "^5.3.0",
"react-router-dom": "^6.26.1",
"styled-components": "^6.1.13"
},
"devDependencies": {
"@sudoo/react-force-dev": "^2.0.0",
"@sudoo/triforce": "^3.12.0",
"@vitejs/plugin-react": "^4.3.1",
"dotenv": "^16.4.5",
"ts-node": "^10.9.2",
"vite": "^5.4.4"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"include": [
"src/**/*.ts",
"src/**/*.tsx"
],
"instrument": true,
"reporter": [
"json",
"text-summary"
],
"report-dir": "coverage",
"sourceMap": true
}
}