-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "exchange-rates-website",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development --open",
"build": "webpack",
"build-and-deploy": "webpack && gh-pages -d dist",
"ts-unused-exports": "ts-unused-exports tsconfig.json"
},
"author": "vkoshcheev",
"license": "UNLICENSED",
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/modifiers": "^9.0.0",
"@dnd-kit/sortable": "^10.0.0",
"@reduxjs/toolkit": "^2.5.0",
"@tanstack/react-query": "^5.62.10",
"axios": "^1.7.9",
"country-flag-emoji-polyfill": "^0.1.8",
"lodash": "^4.17.21",
"react": "^18.3.1",
"react-collapsible": "^2.10.0",
"react-dom": "^18.3.1",
"react-redux": "^9.2.0",
"redux": "^5.0.1",
"utils-react": "github:vkoshcheev/utils-react"
},
"devDependencies": {
"@types/lodash": "^4.17.13",
"@types/react": "^19.0.1",
"@types/react-dom": "^19.0.2",
"css-loader": "^7.1.2",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.3",
"mini-css-extract-plugin": "^2.9.2",
"sass": "^1.83.0",
"sass-loader": "^16.0.4",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.2.0"
}
}