-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
61 lines (61 loc) · 1.83 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
{
"name": "just-another-todo-app",
"description": "A todo app built with React + Redux.",
"version": "3.0.0",
"private": true,
"scripts": {
"start": "react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test",
"lint": "prettier --config .prettierrc.json -w '**/*.{json,js}' && stylelint --config .stylelintrc.json --fix '**/*.css' && eslint --config .eslintrc.json --fix '**/*.js'",
"prepare": "husky"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "6.6.0",
"@fortawesome/free-solid-svg-icons": "6.6.0",
"@fortawesome/react-fontawesome": "0.2.2",
"@hello-pangea/dnd": "^17.0.0",
"@reduxjs/toolkit": "^2.0.0",
"bootswatch": "5.3.3",
"clsx": "^2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"react-scripts": "5.0.1",
"react-textarea-autosize": "^8.3.4",
"uuid": "10.0.0",
"web-vitals": "^4.0.0"
},
"devDependencies": {
"@redux-devtools/core": "^4.0.0",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "6.6.2",
"@testing-library/react": "16.0.1",
"@testing-library/user-event": "^14.4.3",
"ajv": "^8.17.1",
"eslint": "^9.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"husky": "^9.0.0",
"jest": "^29.0.1",
"lint-staged": "^15.0.0",
"prettier": "^3.0.0",
"prop-types": "^15.8.1",
"react-test-renderer": "18.3.1",
"stylelint": "^16.0.0",
"stylelint-config-prettier": "^9.0.3",
"stylelint-prettier": "^5.0.0"
}
}