-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.29 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
63
64
65
66
67
68
69
70
71
{
"name": "@deriv-com/auth-client",
"private": false,
"version": "0.0.0-development",
"type": "module",
"main": "dist/index.js",
"scripts": {
"dev": "vite",
"bootstrap": "rm -rf node_modules && npm cache clean --force && npm install",
"build": "tsc -b && vite build",
"lint": "eslint .",
"prepublish": "npm run build",
"preview": "vite preview",
"watch": "vite build --watch",
"test": "jest --passWithNoTests",
"test:coverage": "jest --coverage --passWithNoTests --runInBand",
"test:report": "jest --report"
},
"files": [
"dist"
],
"types": "./dist/auth-client.d.ts",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@deriv-com/utils": "^0.0.42",
"js-cookie": "3.0.5",
"lottie-react": "^2.4.0",
"oidc-client-ts": "^3.1.0"
},
"devDependencies": {
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@eslint/js": "^9.9.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/github": "^10.0.2",
"@semantic-release/npm": "^12.0.0",
"@semantic-release/release-notes-generator": "^13.0.0",
"@testing-library/react": "^14.2.2",
"@types/jest": "^29.5.14",
"@types/js-cookie": "^3.0.6",
"@types/node": "^22.5.4",
"@types/react": "^18.3.5",
"@types/react-dom": "^18.3.0",
"@vitejs/plugin-react": "^4.3.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"babel-jest": "^29.7.0",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.1",
"eslint-plugin-react-refresh": "^0.4.9",
"glob": "^11.0.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"sass": "^1.81.0",
"semantic-release": "^23.0.6",
"typescript": "^5.6.3",
"typescript-eslint": "^8.0.1",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.2.1",
"vite-plugin-lib-inject-css": "2.0.1",
"vite-plugin-svgr": "^4.3.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.27.3"
}
}