-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.7 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
{
"name": "bitbank-depth-chart",
"version": "1.0.0",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"fix": "prettier --write .",
"test": "jest",
"test:e2e": "playwright test tests --config playwright.config.ts",
"test:e2e:dev": "PLAYWRIGHT_TEST_BASE_URL=http://127.0.0.1:5173 playwright test tests --config playwright.config.ts",
"upgrade-deps": "yarn upgrade-interactive",
"sync-deps": "npx syncyarnlock -s -k"
},
"dependencies": {
"@emotion/react": "^11.10.5",
"@emotion/styled": "^11.10.5",
"@mui/icons-material": "^5.10.9",
"@mui/material": "^5.10.12",
"bignumber.js": "^9.1.0",
"highcharts": "^9.3.3",
"highcharts-react-official": "^3.1.0",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-use-bitbank": "^0.2.4"
},
"devDependencies": {
"@playwright/test": "^1.32.3",
"@swc/core": "^1.3.14",
"@swc/jest": "^0.2.23",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^12.1.5",
"@testing-library/react-hooks": "^7.0.2",
"@types/bignumber.js": "^5.0.0",
"@types/node": "^16.18.3",
"@types/react": "^17.0.52",
"@types/react-dom": "^17.0.18",
"@vitejs/plugin-react": "^1.3.2",
"jest": "^27.5.1",
"prettier": "^2.7.1",
"typescript": "^4.8.4",
"vite": "^3.2.2"
},
"jest": {
"transform": {
".+\\.(t|j)sx?$": [
"@swc/jest"
]
},
"setupFilesAfterEnv": [
"@testing-library/jest-dom/extend-expect"
],
"testEnvironment": "jsdom"
},
"prettier": {
"printWidth": 140,
"tabWidth": 2,
"useTabs": false,
"semi": false,
"singleQuote": true,
"trailingComma": "all"
}
}