-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.59 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
{
"name": "cryptolight",
"version": "1.0.0",
"description": "React app based on Feature-Sliced Design (Architectural methodology for frontend projects)",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"typescript:validate": "tsc --noEmit -p tsconfig.validation.json",
"host": "vite --host",
"lint": "eslint src --max-warnings=0",
"lint:ci": "eslint src",
"eslint:fix": "eslint --fix src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Yar56/cryptolight.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Yar56/cryptolight/issues"
},
"homepage": "https://github.com/Yar56/cryptolight#readme",
"devDependencies": {
"@feature-sliced/eslint-config": "^0.1.0-beta.6",
"@types/compose-function": "^0.0.30",
"@types/d3-array": "^3.0.5",
"@types/numeral": "^2.0.2",
"@types/react": "^18.0.18",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.19",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"autoprefixer": "^10.4.10",
"cross-env": "^7.0.3",
"css-tree": "^2.2.1",
"eslint": "8.22.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-boundaries": "^3.4.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-react": "^7.31.8",
"postcss": "^8.4.16",
"prettier": "2.7.1",
"sass": "^1.54.9",
"typescript": "^4.8.2",
"typescript-language-server": "5.1.3"
},
"dependencies": {
"@effector/reflect": "^8.0.0",
"@nextui-org/react": "^1.0.0-beta.10",
"@reduxjs/toolkit": "^1.9.5",
"@types/lodash": "^4.14.189",
"@uidotdev/usehooks": "^2.0.1",
"@visx/axis": "^3.1.0",
"@visx/brush": "^3.0.1",
"@visx/gradient": "^3.0.0",
"@visx/group": "^3.0.0",
"@visx/shape": "^3.0.0",
"@visx/tooltip": "^3.1.2",
"@vitejs/plugin-react": "^3.0.0",
"axios": "^0.27.2",
"clsx": "^1.2.1",
"compose-function": "^3.0.3",
"d3-array": "^3.2.4",
"date-fns": "^2.30.0",
"effector": "^22.3.0",
"effector-react": "^22.3.3",
"formik": "^2.2.9",
"immer": "^9.0.15",
"localstorage-slim": "^2.4.0",
"lodash": "^4.17.21",
"numeral": "^2.0.6",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.1.0",
"react-router": "^6.4.5",
"react-router-dom": "^6.4.5",
"styled-components": "^6.0.0-rc.3",
"vite": "^4.0.0",
"vite-plugin-svgr": "^2.3.0",
"yup": "^0.32.11"
}
}