-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.27 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.27 KB
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
73
74
75
76
77
78
79
{
"name": "kanban",
"version": "1.6.5",
"type": "module",
"description": "The purpose of this project is to provide a simple and intuitive way to manage tasks and workflows using the Kanban methodology.",
"keywords": [
"kanban",
"task management",
"workflow management"
],
"author": "Danila 'ShotMeow' Mavrin",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ShotMeow/kanban.git"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"prettier": "prettier --write ./src",
"prettier-check": "prettier --check ./src",
"eslint": "eslint --ext .js,.ts,.tsx ./src",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"cypress:open": "cypress open"
},
"pre-commit": [
"eslint",
"prettier-check"
],
"dependencies": {
"@reduxjs/toolkit": "^1.9.3",
"classnames": "^2.3.2",
"firebase": "^9.18.0",
"focus-trap": "^7.4.0",
"framer-motion": "^10.7.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-redux": "^8.0.5",
"react-router-dom": "^6.9.0",
"redux-persist": "^6.0.0",
"swiper": "^9.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.5",
"@types/react": "^18.0.27",
"@types/react-beautiful-dnd": "^13.1.4",
"@types/react-dom": "^18.0.10",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@vitejs/plugin-react": "^3.1.0",
"autoprefixer": "^10.4.14",
"cypress": "^12.11.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"identity-obj-proxy": "^3.0.0",
"jest": "^29.5.0",
"jest-css-modules-transform": "^4.4.2",
"jest-environment-jsdom": "^29.5.0",
"postcss": "^8.4.21",
"pre-commit": "^1.2.2",
"prettier": "^2.8.6",
"sass": "^1.60.0",
"tailwindcss": "^3.3.0",
"ts-jest": "^29.1.0",
"typescript": "^4.9.5",
"vite": "^4.1.0"
}
}