-
Notifications
You must be signed in to change notification settings - Fork 227
/
package.json
138 lines (138 loc) · 4.45 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "react-redux-saga-boilerplate",
"description": "Boilerplate with React and Redux with Redux Saga",
"version": "2024.2.0",
"author": "Gil Barbara <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/gilbarbara/react-redux-saga-boilerplate"
},
"bugs": "https://github.com/gilbarbara/react-redux-saga-boilerplate/issues",
"license": "MIT",
"keywords": [
"React",
"React-Router",
"Redux",
"Redux-Saga",
"Webpack",
"ES6"
],
"type": "module",
"dependencies": {
"@emotion/react": "^11.11.3",
"@emotion/styled": "^11.11.0",
"@gilbarbara/components": "^0.11.2",
"@gilbarbara/helpers": "^0.9.2",
"@reduxjs/toolkit": "^2.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.12",
"react-helmet-async": "^2.0.4",
"react-inlinesvg": "^4.1.1",
"react-redux": "^9.1.0",
"react-router-dom": "^6.21.3",
"react-transition-group": "^4.4.5",
"react-use": "^17.5.0",
"redux": "^5.0.1",
"redux-persist": "^6.0.0",
"redux-saga": "^1.3.0",
"tree-changes-hook": "^0.11.2"
},
"devDependencies": {
"@gilbarbara/eslint-config": "^0.7.3",
"@gilbarbara/prettier-config": "^1.0.0",
"@gilbarbara/tsconfig": "^0.2.3",
"@originjs/vite-plugin-commonjs": "^1.0.3",
"@size-limit/preset-app": "^11.0.2",
"@testing-library/cypress": "^10.0.1",
"@testing-library/jest-dom": "^6.3.0",
"@testing-library/react": "^14.1.2",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.8",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@types/react-redux": "^7.1.33",
"@types/react-router-dom": "^5.3.3",
"@types/react-transition-group": "^4.4.10",
"@types/redux-immutable-state-invariant": "^2.1.4",
"@types/redux-logger": "^3.0.13",
"@types/testing-library__cypress": "^5.0.13",
"@vitejs/plugin-react": "^4.2.1",
"@vitejs/plugin-react-swc": "^3.5.0",
"@vitest/coverage-v8": "^1.2.2",
"caniuse-lite": "^1.0.30001581",
"chalk": "^5.3.0",
"cypress": "^13.6.3",
"deepmerge-ts": "^5.1.0",
"eslint-config-cypress": "^0.28.0",
"eslint-plugin-cypress": "^2.15.1",
"eslint-plugin-redux-saga": "^1.3.2",
"husky": "^9.0.6",
"is-ci-cli": "^2.2.0",
"jest-extended": "^4.0.2",
"jsdom": "^24.0.0",
"postcss": "^8.4.33",
"postcss-styled-syntax": "^0.6.4",
"prettier": "^3.2.4",
"redux-immutable-state-invariant": "^2.1.0",
"redux-logger": "^3.0.6",
"redux-saga-test-plan": "^4.0.6",
"repo-tools": "^0.3.1",
"rsync": "^0.6.1",
"size-limit": "^11.0.2",
"start-server-and-test": "^2.0.3",
"stylelint": "^16.2.0",
"stylelint-config-standard": "^36.0.0",
"stylelint-order": "^6.0.4",
"ts-node": "^10.9.2",
"type-fest": "^4.10.1",
"typescript": "^5.3.3",
"vite": "^5.0.12",
"vite-plugin-pwa": "^0.17.5",
"vite-tsconfig-paths": "^4.3.1",
"vitest": "^1.2.2",
"vitest-fetch-mock": "^0.2.2",
"web-vitals": "^3.5.2"
},
"scripts": {
"start": "vite",
"build": "tsc && vite build",
"preview": "npm run build && vite preview",
"lint": "eslint --ext .js,.ts,.tsx,.mjs --fix src test tools",
"lint:styles": "stylelint 'src/**/*.{ts,tsx}'",
"typecheck": "tsc -p test/tsconfig.json",
"test": "is-ci \"test:coverage\" \"test:watch\"",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest watch",
"test:e2e": "start-server-and-test preview http://localhost:3000 test:e2e:run",
"test:e2e:run": "cypress run --record --key adbe5dd9-10e2-42aa-b679-da6d31ae5d51",
"test:e2e:dev": "cypress open",
"format": "prettier \"**/*.{js|jsx|json|yml|yaml|css|less|scss|ts|tsx|md|graphql|mdx}\" --write",
"check-remote": "repo-tools check-remote",
"install-packages": "repo-tools install-packages",
"validate": "npm run lint && npm run lint:styles && npm run typecheck && npm run test:coverage && npm run build && npm run size",
"deploy": "npm run build && node tools/publish.mjs",
"publish": "node tools/publish.mjs",
"size": "size-limit",
"prepare": "husky"
},
"prettier": "@gilbarbara/prettier-config",
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"size-limit": [
{
"path": "./dist/assets/*.js",
"limit": "150 kb"
}
]
}