-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.06 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
{
"name": "currency-exchanger",
"version": "0.1.0",
"author": "altsep <mx24xnpi4@mozmail.com> (https://altsep.vercel.app)",
"license": "MIT",
"private": true,
"dependencies": {
"@reduxjs/toolkit": "^1.8.5",
"locale-currency": "^0.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.2",
"react-router-dom": "6.4.0",
"swr": "^1.3.0",
"unfetch": "^4.2.0",
"web-vitals": "^3.0.2"
},
"scripts": {
"start": "vite serve root",
"build": "pnpm i && vite build root --emptyOutDir"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:3001/",
"devDependencies": {
"@babel/core": "^7.19.1",
"@babel/preset-env": "^7.19.1",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@tailwindcss/forms": "^0.5.3",
"@testing-library/dom": "^8.18.1",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.0.3",
"@types/node": "^18.7.18",
"@types/react": "^18.0.20",
"@types/react-dom": "^18.0.6",
"@types/react-router": "^5.1.19",
"@types/testing-library__jest-dom": "^5.14.5",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.11",
"babel-jest": "^29.0.3",
"eslint": "^8.23.1",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-react": "^7.31.8",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.0.3",
"jest-environment-jsdom": "^29.0.3",
"postcss": "^8.4.16",
"prettier": "^2.7.1",
"prettier-eslint": "^15.0.1",
"tailwindcss": "^3.1.8",
"typescript": "^4.8.3",
"vite": "^3.1.3",
"vite-tsconfig-paths": "^3.5.0"
}
}