generated from Julian1993ARG/boilerplate-vite-react-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.92 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
{
"name": "boilerplate-react-vite",
"version": "0.0.0",
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "jest",
"test:watch": "yarn test --watch",
"lint": "eslint src --ext ts,tsx",
"lint:fix": "yarn lint --fix",
"type-check": "tsc --project tsconfig.json --pretty --noEmit",
"prepare": "husky install",
"update-deps": "node ./src/config/update-deps.mjs"
},
"dependencies": {
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@vitejs/plugin-react": "2.1.0",
"babel-eslint": "10.1.0",
"bootstrap": "^5.2.3",
"eslint": "8.24.0",
"eslint-config-react-app": "7.0.1",
"eslint-config-standard": "17.0.0",
"eslint-config-standard-jsx": "11.0.0",
"eslint-config-standard-react": "11.0.1",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-n": "15.3.0",
"eslint-plugin-promise": "6.0.1",
"eslint-plugin-react": "7.31.8",
"firebase": "^9.15.0",
"formik": "^2.2.9",
"husky": "8.0.1",
"jest": "29.1.1",
"jest-runner-eslint": "1.1.0",
"react": "18.2.0",
"react-bootstrap": "^2.7.0",
"react-dom": "18.2.0",
"react-ga4": "^1.4.1",
"react-router-dom": "^6.6.1",
"react-test-renderer": "18.2.0",
"reactfire": "^4.0.0-rc.2",
"sweetalert2": "^11.6.16",
"ts-jest": "29.0.2",
"ts-node": "10.9.1",
"typescript": "4.8.4",
"vite": "3.1.4",
"vite-plugin-lint": "1.0.1",
"vite-plugin-linter": "1.2.0",
"vite-plugin-svgr": "2.2.1",
"vite-tsconfig-paths": "3.5.1",
"xlsx": "^0.18.5",
"yup": "^0.32.11"
},
"devDependencies": {
"@types/bootstrap": "^5.2.6",
"@types/file-saver": "^2.0.5",
"@types/jest": "29.0.3",
"@types/react": "18.0.21",
"@types/react-bootstrap": "^0.32.32",
"@types/react-dom": "18.0.6",
"@faker-js/faker": "^7.6.0",
"@types/react-router-dom": "^5.3.3"
}
}