-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
{
"name": "front-end-template",
"version": "1.3.8",
"description": "Front end template for React",
"main": "main.jsx",
"author": "Mikel Jagan",
"license": "MIT",
"private": true,
"type": "module",
"dependencies": {
"@fortawesome/fontawesome-free": "^6.3.0",
"@hello-pangea/dnd": "^16.2.0",
"@reduxjs/toolkit": "^1.9.3",
"@sentry/react": "^7.44.1",
"@sentry/tracing": "^7.44.1",
"@sentry/vite-plugin": "^0.4.0",
"formik": "^2.2.9",
"gsap": "^3.11.5",
"jwt-decode": "^3.1.2",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-ga": "^3.3.1",
"react-is": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"redux-thunk": "^2.4.2",
"state-wrangler": "^0.2.3",
"styled-components": "^5.3.9",
"xerum": "^0.9.13",
"yup": "^0.32.11"
},
"devDependencies": {
"@babel/eslint-parser": "^7.21.3",
"@babel/preset-react": "^7.18.6",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/react": "^18.0.28",
"@types/react-dom": "^18.0.11",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.29.5",
"eslint-plugin-destructuring": "^2.2.1",
"eslint-plugin-etc": "^2.0.2",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-no-inline-styles": "^1.0.5",
"eslint-plugin-react": "^7.32.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.10.2",
"eslint-plugin-vitest": "^0.0.54",
"jsdom": "^21.1.1",
"miragejs": "^0.1.47",
"typescript": "^4.9.5",
"vite": "^4.2.1",
"vite-jsconfig-paths": "^2.0.1",
"vite-plugin-eslint": "^1.8.1",
"vitest": "^0.29.5"
},
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint -c .eslintrc.cjs --ext .js,.jsx .",
"lint:fix": "npm run lint -- --fix",
"test": "vitest",
"test:coverage": "vitest run --coverage",
"deploy": "npm run build && netlify deploy --prod"
}
}