-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.92 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
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ts-redux-next",
"version": "0.0.0",
"homepage": "https://morewings.github.io/ts-redux-next/",
"repository": {
"type": "git",
"url": "https://github.com/morewings/ts-redux-next.git"
},
"bugs": {
"url": "https://github.com/morewings/ts-redux-next/issues"
},
"license": "MIT",
"private": false,
"scripts": {
"dev": "next dev",
"build": "next build",
"analyze:build": "ANALYZE=true run-s build",
"start": "next start",
"lint:code": "eslint src/** --report-unused-disable-directives",
"fix:code": "run-s 'lint:code --fix'",
"lint:style": "stylelint 'src/**/*.css'",
"fix:style": "stylelint 'src/**/*.css' --fix",
"lint:tsc": "tsc --pretty --noEmit",
"prepare": "is-ci || husky",
"test": "jest",
"generate:component": "npx generate-react-cli component",
"generate:component-loading": "npx generate-react-cli component --type=loading",
"generate:feature": "npx generate-react-cli component --type=feature",
"generate:page": "npx generate-react-cli component --type=page"
},
"dependencies": {
"@reduxjs/toolkit": "2.3.0",
"classnames": "2.5.1",
"next": "15.0.2",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-redux": "9.1.2",
"redux": "5.0.1",
"uniqid": "5.4.0"
},
"devDependencies": {
"@eslint/compat": "1.2.2",
"@eslint/js": "9.14.0",
"@next/bundle-analyzer": "15.0.2",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "16.0.1",
"@types/jest": "29.5.14",
"@types/node": "20.17.6",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@types/redux-mock-store": "1.0.6",
"@types/uniqid": "5.3.4",
"@typescript-eslint/eslint-plugin": "8.13.0",
"@typescript-eslint/parser": "8.13.0",
"eslint": "9.14.0",
"eslint-config-next": "15.0.2",
"eslint-config-prettier": "9.1.0",
"eslint-config-react-app": "7.0.1",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-prettier": "5.2.1",
"eslint-plugin-react": "7.37.2",
"eslint-plugin-react-hooks": "5.0.0",
"eslint-plugin-ssr-friendly": "1.3.0",
"generate-react-cli": "8.4.9",
"husky": "9.1.6",
"is-ci": "3.0.1",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"lint-staged": "15.2.10",
"npm-run-all2": "7.0.1",
"postcss": "8.4.47",
"postcss-preset-env": "10.0.9",
"prettier": "3.3.3",
"redux-mock-store": "1.5.5",
"stylelint": "16.10.0",
"stylelint-config-prettier": "9.0.5",
"stylelint-config-standard": "36.0.1",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.2",
"typescript": "5.6.3",
"typescript-eslint": "8.13.0"
}
}