-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
63 lines (63 loc) · 1.99 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
{
"name": "react-template-ts",
"version": "0.1.2",
"keywords": [
"react",
"template",
"boilerplate",
"javascript"
],
"repository": "https://github.com/Julio-Vasquez/react-boilerplate-template.git",
"homepage": "https://github.com/Julio-Vasquez/react-boilerplate-template",
"author": "Julio Vásquez <jualvalitube@gmail.com>",
"license": "MIT",
"scripts": {
"start": "npx http-server ./dist",
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vite test",
"coverage": "vitest run --coverage"
},
"dependencies": {
"@ant-design/icons": "^4.8.0",
"@reduxjs/toolkit": "^1.9.1",
"antd": "^5.0.5",
"i18next": "^22.1.5",
"i18next-browser-languagedetector": "^7.0.1",
"jwt-decode": "^3.1.2",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-helmet-async": "^1.3.0",
"react-highlight-words": "^0.18.0",
"react-i18next": "^12.1.1",
"react-redux": "^8.0.5",
"react-router-dom": "^6.4.5",
"react-tiny-fab": "^4.0.4",
"redux-logger": "^3.0.6",
"redux-saga": "^1.2.2",
"sass": "^1.56.2"
},
"devDependencies": {
"@testing-library/react": "^13.4.0",
"@types/jest": "^29.2.4",
"@types/jwt-decode": "^3.1.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/react-highlight-words": "^0.16.4",
"@types/react-redux": "^7.1.24",
"@types/react-router-dom": "^5.3.3",
"@types/redux-logger": "^3.0.9",
"@vitejs/plugin-react": "^3.0.0",
"@vitest/coverage-c8": "^0.25.6",
"happy-dom": "^8.1.0",
"standard": "^17.0.0",
"vite": "^4.0.0",
"vite-plugin-rewrite-all": "^1.0.1",
"vitest": "^0.25.6"
},
"eslintConfig": {
"extends": "./node_modules/standard/eslintrc.json"
}
}