-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
72 lines (72 loc) · 2.11 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": "algo-visualizers",
"private": true,
"version": "0.0.0",
"type": "module",
"license": "MIT",
"author": {
"name": "Sadanand pai",
"email": "[email protected]"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"lint": "eslint src --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview",
"test": "vitest",
"cypress:open": "cypress open",
"cypress:run": "cypress run",
"e2e:open": "start-server-and-test dev http://localhost:5173 cypress:open",
"e2e:test": "start-server-and-test dev http://localhost:5173 cypress:run"
},
"dependencies": {
"@reduxjs/toolkit": "^2.2.2",
"lucide-react": "^0.350.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-joyride": "^2.8.0",
"react-redux": "^9.1.0",
"react-router-dom": "^6.22.3",
"react-switch": "^7.0.0",
"react-use": "^17.5.0",
"redux-persist": "^6.0.0",
"sonner": "^1.4.41"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@types/node": "^20.11.30",
"@types/react": "^18.2.67",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitejs/plugin-react-swc": "^3.6.0",
"autoprefixer": "^10.4.19",
"cypress": "^13.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-unused-imports": "^3.1.0",
"jsdom": "^23.2.0",
"postcss": "^8.4.38",
"sass": "^1.72.0",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.2.1",
"stylelint-config-recess-order": "^4.6.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-config-standard-scss": "^12.0.0",
"tailwindcss": "^3.4.3",
"typescript": "^5.4.3",
"vite": "^5.2.7",
"vitest": "^1.4.0"
},
"engines": {
"node": ">=20.11.1"
},
"volta": {
"node": "20.11.1"
},
"homepage": "https://github.com/sadanandpai/algo-visualizers"
}