-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
107 lines (107 loc) · 3.32 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
{
"name": "smesher-app",
"version": "0.1.0",
"author": {
"name": "Kirill Shumilov",
"email": "[email protected]",
"url": "https://github.com/spacemeshos/smesher-app"
},
"private": true,
"license": "MIT",
"scripts": {
"dev": "vite",
"cors": "node ./cors.js",
"build": "tsc && vite build",
"docker:build": "docker build -t smesher-app .",
"docker:up": "docker-compose up",
"serve": "vite preview",
"lint": "eslint src --ext .tsx --ext .ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --config ./.prettierrc -w 'src/**/*.{tsx,ts}' && git update-index --again",
"pretest": "yarn lint:fix",
"test": "jest --colors --passWithNoTests --maxWorkers=1",
"test:watch": "yarn test --collectCoverage=false --watch",
"prepare": "husky install",
"cz": "cz"
},
"dependencies": {
"@chakra-ui/anatomy": "^2.2.2",
"@chakra-ui/icons": "^2.0.17",
"@chakra-ui/react": "^2.4.9",
"@chakra-ui/styled-system": "^2.9.2",
"@emotion/react": "^11.8.1",
"@emotion/styled": "^11.8.1",
"@hookform/resolvers": "^3.4.0",
"@mobily/ts-belt": "^3.13.1",
"@scure/bip39": "^1.2.2",
"@tabler/icons-react": "^3.1.0",
"@tanstack/react-virtual": "^3.3.0",
"@uidotdev/usehooks": "^2.4.1",
"aes-js": "^3.1.2",
"bech32": "^2.0.0",
"crypto-js": "^4.2.0",
"detect-browser": "^5.3.0",
"eventemitter3": "^5.0.1",
"framer-motion": "^8.5.2",
"humanize-duration": "^3.32.1",
"js-file-download": "^0.4.12",
"moment": "^2.30.1",
"npm": "^10.8.1",
"parse-duration": "^1.1.0",
"react": "^18.2.0",
"react-dnd": "^16.0.1",
"react-dnd-html5-backend": "^16.0.1",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.1",
"react-qr-code": "^2.0.14",
"react-router-dom": "^6.22.3",
"react-singleton-hook": "^4.0.1",
"vis-data": "^7.1.9",
"vis-timeline": "^7.7.3",
"xss": "^1.0.15",
"zod": "^3.22.4",
"zustand": "^4.5.2"
},
"devDependencies": {
"@babel/core": "^7.17.5",
"@commitlint/cli": "^17.4.2",
"@commitlint/config-conventional": "^17.4.2",
"@testing-library/jest-dom": "^5.16.2",
"@testing-library/react": "^13.4.0",
"@types/aes-js": "^3.1.4",
"@types/crypto-js": "^4.2.2",
"@types/frappe-gantt": "^0.6.4",
"@types/humanize-duration": "^3.27.4",
"@types/jest": "^29.2.6",
"@types/react": "^18.0.27",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@vitejs/plugin-react": "^3.0.1",
"cors-anywhere": "^0.4.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "^8.9.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^8.4.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-react": "^7.30.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-simple-import-sort": "^9.0.0",
"husky": "^8.0.3",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.4.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^2.5.1",
"rollup": "^3.29.5",
"ts-jest": "^29.0.5",
"typescript": "^4.5.5",
"vite": "^4.5.5",
"vite-plugin-node-polyfills": "^0.22.0"
},
"resolutions": {
"wrap-ansi": "7.0.0",
"string-width": "4.1.0"
}
}