-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.42 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
{
"name": "todo-list",
"version": "1.0.0",
"private": true,
"scripts": {
"start": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write .",
"lint": "npm run lint:ts && npm run lint:styles",
"lint:ts": "eslint .",
"lint:styles": "stylelint '**/*.css'",
"lint-fix": "npm run lint-fix:ts && npm run lint-fix:styles",
"lint-fix:ts": "eslint --fix .",
"lint-fix:styles": "stylelint --fix '**/*.css'"
},
"dependencies": {
"@hello-pangea/dnd": "^18.0.0",
"@octokit/rest": "^22.0.0",
"@reduxjs/toolkit": "^2.0.0",
"classnames": "^2.0.0",
"react": "^19.0.0",
"react-content-loader": "^7.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.0.0",
"react-responsive": "^10.0.0",
"react-router-dom": "^7.0.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@sctg/vite-plugin-github-pages-spa": "^0.1.0",
"@types/classnames": "^2.0.0",
"@types/node": "^22.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.0.0",
"eslint": "^9.0.0",
"eslint-plugin-react": "^7.0.0",
"eslint-plugin-react-hooks": "^7.0.0",
"globals": "^16.0.0",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"stylelint-config-clean-order": "^7.0.0",
"stylelint-config-standard": "^39.0.0",
"typescript": "^5.0.0",
"typescript-eslint": "^8.0.0",
"vite": "^7.0.0"
}
}