forked from Cynsar-Foundation/second.exchange
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.43 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.43 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
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
{
"name": "second-exchange",
"version": "0.0.0-dev",
"private": true,
"scripts": {
"dev": "vite",
"dev:2": "run-p dev tscheck:w",
"build": "tsc && vite build",
"serve": "vite preview",
"tscheck": "tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch --preserveWatchOutput",
"test": "npm run eslint && npm run tscheck && npm run test:cov",
"test:r": "node node_modules/jest/bin/jest --runInBand --verbose",
"test:w": "npm run test:r -- --watch",
"test:cov": "npm run test:r -- --collectCoverage",
"eslint": "node node_modules/eslint/bin/eslint \"src/**/*.{ts,tsx}\"",
"eslint:w": "watchexec -w src \"npm run eslint\"",
"eslint:fix": "npm run eslint -- --fix"
},
"dependencies": {
"@chakra-ui/icons": "^1.1.1",
"@chakra-ui/react": "^1.8.1",
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@hookform/resolvers": "^2.8.5",
"@hqoss/monads": "^0.5.0",
"@noble/hashes": "^0.5.7",
"@noble/secp256k1": "^1.3.0",
"antd": "^4.18.5",
"browserify-cipher": ">=1",
"browserify-zlib": "^0.2.0",
"buffer": "^6.0.3",
"class-transformer": "^0.5.1",
"class-validator": "^0.13.2",
"create-hash": "^1.2.0",
"cross-fetch": "^3.1.4",
"events": "^3.3.0",
"framer-motion": "^5.6.0",
"ky": "^0.28.7",
"micro-bip32": "^0.1.0",
"micro-bip39": "^0.1.3",
"njct": "^8.1.0",
"process": "^0.11.10",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-icons": "^4.3.1",
"react-markdown": "^8.0.0",
"react-router-dom": "^6.2.1",
"react-scripts": "5.0.0",
"recoil": "0.5.2",
"request": "^2.88.2",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"websocket-polyfill": "^0.0.3"
},
"devDependencies": {
"@kyleshevlin/eslint-plugin": "^1.3.0",
"@testing-library/jest-dom": "^5.16.1",
"@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^27.4.0",
"@types/react": "^17.0.38",
"@types/react-dom": "^17.0.11",
"@types/react-router-dom": "^5.3.2",
"@typescript-eslint/eslint-plugin": "^5.9.0",
"@typescript-eslint/parser": "^5.9.0",
"@vitejs/plugin-react-refresh": "^1.3.6",
"autoprefixer": "^10.4.2",
"cssnano": "^5.0.15",
"cssnano-preset-default": "^5.1.10",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"eslint-import-resolver-node": "^0.3.6",
"eslint-plugin-etc": "^2.0.1",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-only-warn": "^1.0.3",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"eslint-plugin-react-hooks": "^4.3.0",
"eslint-plugin-regexp": "^1.5.1",
"eslint-plugin-simple-import-sort": "^7.0.0",
"eslint-plugin-sonarjs": "^0.11.0",
"eslint-plugin-sort-class-members": "^1.14.1",
"eslint-plugin-testing-library": "^5.0.1",
"eslint-plugin-unicorn": "^40.0.0",
"eslint-plugin-wix-editor": "^3.3.0",
"identity-obj-proxy": "^3.0.0",
"jest": "^27.4.7",
"jest-mock-extended": "^2.0.4",
"jest-transform-stub": "^2.0.0",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.5",
"prettier": "^2.5.1",
"sass": "^1.49.0",
"simplytyped": "^3.3.0",
"tailwindcss": "^2.2.19",
"ts-jest": "^27.1.2",
"tsconfig-paths-jest-mapper": "^1.4.0",
"typescript": "^4.5.4",
"vite": "^2.7.10",
"vite-tsconfig-paths": "^3.3.17",
"watchexec-bin": "^1.0.0"
}
}