-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.49 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
{
"name": "git-dashboard",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint --fix src/**/*.{js,jsx,ts,tsx}",
"test": "vitest --run --reporter verbose --coverage",
"coverage": "vitest run --coverage",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx,json,md}",
"fix": "yarn format && yarn lint"
},
"dependencies": {
"@types/node": "20.2.3",
"@types/react": "18.2.7",
"@types/react-dom": "18.2.4",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "5.0.0",
"env": "^0.0.2",
"eslint": "^8.41.0",
"eslint-config-next": "^14.0.3",
"moment": "^2.29.4",
"next": "^14.0.3",
"next-auth": "^4.22.1",
"next-redux-wrapper": "^8.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-icons": "^4.10.1",
"react-query": "^3.39.3",
"react-responsive": "^9.0.2",
"react-tsparticles": "^2.12.2",
"sharp": "^0.32.6",
"tsparticles": "^3.0.2",
"tsparticles-slim": "^2.12.0"
},
"volta": {
"node": "18.17.0",
"yarn": "1.22.19"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.2",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@vitejs/plugin-react": "^4.0.4",
"@vitest/coverage-v8": "^0.34.4",
"jsdom": "^22.1.0",
"prettier": "2.8.8",
"typescript": "^5.0.4",
"vite": "^4.4.9",
"vitest": "^0.34.3"
}
}