-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
133 lines (133 loc) · 3.8 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
{
"name": "create-react-app-ts",
"version": "2.1.0",
"description": "Scalable starter boilerplate for React applications",
"main": "./src/index.tsx",
"bin": {
"create-react-app-ts": "./bin/cli.js"
},
"scripts": {
"svg": "svgo-viewbox -i ./src/assets",
"start": "vite --open",
"build": "vite build",
"tsc": "tsc --noEmit --skipLibCheck",
"lint": "yarn lint:ts && yarn lint:scss",
"lint:ts": "eslint 'src/**/*.{ts,tsx}'",
"lint:scss": "stylelint './src/**/*.scss' --config .stylelintrc",
"test": "jest --config=./test-config/jest.config.js --runInBand --coverage --env jsdom",
"test:coverage": "yarn test --coverage",
"locale:scan": "i18next-scanner --config ./src/i18n/scanner-config.js './src/**/*.{ts,tsx}'",
"locale:pot": "node ./src/i18n/gettext-converter.mjs jsonToPot",
"locale:po": "node ./src/i18n/gettext-converter.mjs poToJson",
"locale": "yarn locale:scan && yarn locale:pot && yarn locale:po",
"run-dist": "yarn build && npx ecstatic ./dist --root=./dist --host=localhost --port=8080 --baseDir=/"
},
"repository": {
"type": "git",
"url": "[email protected]:three11/react-template.git"
},
"keywords": [
"React",
"Starter",
"Template",
"SPA",
"JavaScript"
],
"authors": [
{
"name": "Three 11 Ltd",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "[email protected]",
"role": "Developer"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/three11/react-template/issues"
},
"homepage": "https://github.com/three11/react-template#readme",
"dependencies": {
"@loadable/component": "5.16.4",
"@redux-devtools/extension": "3.3.0",
"axios": "1.7.9",
"date-fns": "3.6.0",
"i18next": "23.16.8",
"i18next-browser-languagedetector": "7.2.2",
"normalize.css": "8.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.54.0",
"react-i18next": "14.1.3",
"react-inlinesvg": "4.1.5",
"react-redux": "9.1.2",
"react-router": "6.28.0",
"react-router-dom": "6.28.0",
"redux": "4.2.1",
"redux-saga": "1.3.0",
"scss-goodies": "2.2.0"
},
"devDependencies": {
"@rollup/plugin-alias": "5.1.1",
"@testing-library/jest-dom": "6.6.3",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.14",
"@types/loadable__component": "5.13.9",
"@types/node": "20.17.9",
"@types/postcss-flexbugs-fixes": "5.0.3",
"@types/react": "18.3.14",
"@types/react-dom": "18.3.3",
"@types/react-loadable": "5.5.11",
"@types/react-redux": "7.1.34",
"@types/react-router": "5.1.20",
"@types/react-router-dom": "5.3.3",
"@types/redux-mock-store": "1.5.0",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "4.3.4",
"autoprefixer": "10.4.20",
"cssnano": "6.1.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.9.0",
"eslint-plugin-react": "7.37.2",
"i18next-conv": "14.1.0",
"i18next-scanner": "4.6.0",
"jest": "29.7.0",
"jest-environment-jsdom": "29.7.0",
"jest-localstorage-mock": "2.4.26",
"postcss": "8.4.49",
"postcss-flexbugs-fixes": "5.0.2",
"redux-mock-store": "1.5.5",
"sass": "1.82.0",
"stylelint": "16.11.0",
"stylelint-config-recommended": "14.0.1",
"stylelint-config-standard-scss": "12.0.0",
"stylelint-no-unsupported-browser-features": "8.0.2",
"stylelint-scss": "6.10.0",
"svgo": "3.3.2",
"svgo-add-viewbox": "3.1.0",
"svgo-viewbox": "3.0.0",
"ts-jest": "29.2.5",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vite": "5.4.11",
"vite-plugin-prerender": "1.0.8",
"vite-plugin-pwa": "0.21.1",
"workbox-build": "7.3.0",
"workbox-window": "7.3.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}