This repository has been archived by the owner on Nov 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
123 lines (123 loc) · 3.68 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
{
"name": "react-starter",
"version": "1.0.0",
"description": "An opinionated starter kit for quickly bootstrapping client-side React projects written in TypeScript.",
"browser": "src/index.tsx",
"scripts": {
"test": "jest",
"start": "webpack serve --mode development",
"build": "NODE_ENV=production webpack --mode production",
"lint": "eslint \"src/**\"",
"prepare": "is-ci || husky install",
"commit": "cz"
},
"keywords": [
"react",
"starter-kit",
"typescript"
],
"author": {
"name": "Mike Henderyckx",
"email": "mike.henderyckx@gmail.com",
"url": "https://mhx.be"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mhxbe/react-starter.git"
},
"bugs": {
"url": "https://github.com/mhxbe/react-starter/issues"
},
"directories": {
"lib": "src",
"doc": "README.md"
},
"engines": {
"node": ">=16.15.0",
"npm": "~8.19.0"
},
"dependencies": {
"focus-visible": "5.2.0",
"i18next": "22.4.9",
"i18next-browser-languagedetector": "6.1.8",
"i18next-http-backend": "2.1.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-error-boundary": "3.1.4",
"react-helmet": "6.1.0",
"react-i18next": "12.1.4",
"react-router-dom": "6.6.2",
"tailwindcss": "3.2.4",
"workbox-core": "6.5.4",
"workbox-precaching": "6.5.4",
"workbox-routing": "6.5.4",
"workbox-strategies": "6.5.4",
"workbox-window": "6.5.4"
},
"devDependencies": {
"@babel/cli": "7.20.7",
"@babel/core": "7.20.12",
"@babel/plugin-transform-runtime": "7.19.6",
"@babel/preset-env": "7.20.2",
"@babel/preset-react": "7.18.6",
"@babel/preset-typescript": "7.18.6",
"@commitlint/cli": "17.4.2",
"@commitlint/config-conventional": "17.4.2",
"@commitlint/cz-commitlint": "17.4.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.10",
"@testing-library/jest-dom": "5.16.5",
"@testing-library/react": "13.4.0",
"@testing-library/user-event": "14.3.0",
"@types/html-webpack-plugin": "3.2.6",
"@types/jest": "29.2.5",
"@types/react": "18.0.26",
"@types/react-dom": "18.0.10",
"@types/react-helmet": "6.1.6",
"@types/webpack-bundle-analyzer": "4.6.0",
"@types/webpack-env": "1.18.0",
"@types/workbox-webpack-plugin": "5.1.8",
"@types/workbox-window": "4.3.4",
"@typescript-eslint/eslint-plugin": "5.48.1",
"@typescript-eslint/parser": "5.48.1",
"autoprefixer": "10.4.13",
"babel-loader": "9.1.2",
"clean-webpack-plugin": "4.0.0",
"commitizen": "4.2.6",
"copy-webpack-plugin": "11.0.0",
"css-loader": "6.7.3",
"eslint": "8.31.0",
"eslint-config-prettier": "8.6.0",
"eslint-plugin-compat": "4.0.2",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-jest-dom": "4.0.3",
"eslint-plugin-jsx-a11y": "6.7.1",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-react": "7.32.0",
"eslint-plugin-react-hooks": "4.6.0",
"eslint-plugin-sonarjs": "0.18.0",
"eslint-plugin-testing-library": "5.9.1",
"html-webpack-plugin": "5.5.0",
"husky": "8.0.3",
"identity-obj-proxy": "3.0.0",
"is-ci": "3.0.1",
"jest": "29.3.1",
"jest-environment-jsdom": "29.3.1",
"jest-sonar-reporter": "2.0.0",
"postcss": "8.4.21",
"postcss-focus-visible": "7.1.0",
"postcss-loader": "7.0.2",
"prettier": "2.8.3",
"pretty-quick": "3.1.3",
"react-refresh": "0.14.0",
"style-loader": "3.3.1",
"ts-node": "10.9.1",
"typescript": "4.9.4",
"webpack": "5.75.0",
"webpack-bundle-analyzer": "4.7.0",
"webpack-cli": "5.0.1",
"webpack-dev-server": "4.11.1",
"webpack-pwa-manifest": "4.3.0",
"workbox-webpack-plugin": "6.5.4"
}
}