This repository has been archived by the owner on May 13, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
112 lines (112 loc) · 3.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
{
"name": "deriv-api-docs",
"version": "0.0.0",
"private": true,
"scripts": {
"docusaurus": "docusaurus",
"start:auth": "npx netlify-cms-proxy-server",
"start": "docker compose up -d && docusaurus start --no-open",
"start:dev": "docusaurus start",
"build": "docusaurus build",
"test": "jest",
"swizzle": "docusaurus swizzle",
"deploy": "docusaurus deploy",
"clear": "docusaurus clear",
"serve": "docusaurus serve",
"write-translations": "docusaurus write-translations",
"write-heading-ids": "docusaurus write-heading-ids",
"typecheck": "tsc",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src",
"lint:fix": "eslint --fix --ext .js,.jsx,.ts,.tsx src",
"format": "prettier --write 'src/**/*.{js,jsx,ts,tsx,md,json}' --config ./.prettierrc"
},
"dependencies": {
"@deriv/deriv-api": "^1.0.11",
"@deriv/ui": "^0.1.0",
"@docusaurus/core": "^2.4.0",
"@docusaurus/plugin-client-redirects": "^2.4.0",
"@docusaurus/preset-classic": "^2.4.0",
"@docusaurus/theme-live-codeblock": "^2.4.0",
"@easyops-cn/docusaurus-search-local": "^0.35.0",
"@hookform/resolvers": "^2.9.10",
"@mdx-js/react": "^1.6.22",
"@radix-ui/react-dropdown-menu": "^2.0.2",
"@radix-ui/react-tabs": "^1.0.2",
"@testing-library/react-hooks": "^8.0.1",
"babel-plugin-jsx-remove-data-test-id": "^3.0.0",
"clsx": "^1.2.1",
"docusaurus-plugin-sass": "^0.2.2",
"identity-obj-proxy": "^3.0.0",
"install": "^0.13.0",
"moment": "^2.29.4",
"netlify-cms-app": "^2.15.72",
"prism-react-renderer": "^1.3.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-hook-form": "^7.41.5",
"react-json-view": "^1.21.3",
"react-table": "^7.8.0",
"sass": "^1.57.1",
"sass-loader": "^13.2.0",
"swiper": "^8.3.2",
"trackjs": "^3.10.4",
"ts-jest": "^29.0.3",
"usehooks-ts": "^2.9.1",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/preset-env": "^7.24.3",
"@babel/preset-react": "^7.24.1",
"@babel/preset-typescript": "^7.24.1",
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@deriv/api-types": "^1.0.80",
"@docusaurus/module-type-aliases": "^2.4.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@tsconfig/docusaurus": "^1.0.5",
"@types/jest": "^29.2.5",
"@types/moment": "^2.13.0",
"@types/node-sass": "^4.11.3",
"@types/react-table": "^7.7.14",
"@typescript-eslint/eslint-plugin": "^5.46.1",
"@typescript-eslint/parser": "^5.46.1",
"babel-jest": "^29.7.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jest": "^27.1.6",
"eslint-plugin-react": "^7.31.11",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^8.0.2",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"jest-localstorage-mock": "^2.4.26",
"jest-location-mock": "^1.0.9",
"jest-websocket-mock": "^2.4.0",
"lint-staged": "^13.1.0",
"prettier": "^2.8.1",
"react-test-renderer": "^17.0.2",
"rxjs": "^7.8.0",
"typescript": "^4.7.4"
},
"browserslist": {
"production": [
">0.5%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"engines": {
"node": ">=16.14"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.prettierrc": "prettier --write"
}
}