-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1.4 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
{
"name": "tower-of-hanoi",
"version": "0.0.0",
"type": "module",
"repository": "github:lewxdev/tower-of-hanoi",
"private": true,
"scripts": {
"dev": "vite dev --host",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "jest",
"lint": "eslint .",
"format": "prettier --write .",
"prepare": "husky install"
},
"dependencies": {
"@reduxjs/toolkit": "^1.9.2",
"clsx": "^1.2.1",
"lodash.sample": "^4.2.1",
"react": "^18.2.0",
"react-device-detect": "^2.2.2",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"@types/lodash.sample": "^4.2.7",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"autoprefixer": "^10.4.13",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-import-resolver-typescript": "^3.5.3",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"jest": "^29.4.1",
"postcss": "^8.4.21",
"prettier": "^2.8.3",
"prettier-plugin-tailwindcss": "^0.2.2",
"tailwindcss": "^3.2.4",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-tsconfig-paths": "^4.0.5"
}
}