-
Notifications
You must be signed in to change notification settings - Fork 17
/
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": "git@github.com:three11/react-template.git"
},
"keywords": [
"React",
"Starter",
"Template",
"SPA",
"JavaScript"
],
"authors": [
{
"name": "Three 11 Ltd",
"email": "hello@three-11.com",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "alexander.panayotov@gmail.com",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "scriptex.bg@gmail.com",
"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.7",
"date-fns": "3.6.0",
"i18next": "23.16.4",
"i18next-browser-languagedetector": "7.2.1",
"normalize.css": "8.0.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hook-form": "7.53.1",
"react-i18next": "14.1.3",
"react-inlinesvg": "4.1.4",
"react-redux": "9.1.2",
"react-router": "6.27.0",
"react-router-dom": "6.27.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.2",
"@testing-library/react": "14.3.1",
"@types/jest": "29.5.14",
"@types/loadable__component": "5.13.9",
"@types/node": "20.17.2",
"@types/postcss-flexbugs-fixes": "5.0.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@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.0.6",
"@typescript-eslint/eslint-plugin": "6.21.0",
"@typescript-eslint/parser": "6.21.0",
"@vitejs/plugin-react": "4.3.3",
"autoprefixer": "10.4.20",
"cssnano": "6.1.2",
"eslint": "8.57.1",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jest": "28.8.3",
"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.47",
"postcss-flexbugs-fixes": "5.0.2",
"redux-mock-store": "1.5.5",
"sass": "1.80.4",
"stylelint": "16.10.0",
"stylelint-config-recommended": "14.0.1",
"stylelint-config-standard-scss": "12.0.0",
"stylelint-no-unsupported-browser-features": "8.0.1",
"stylelint-scss": "6.8.1",
"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.0",
"typescript": "5.6.3",
"vite": "5.4.10",
"vite-plugin-prerender": "1.0.8",
"vite-plugin-pwa": "0.20.5",
"workbox-build": "7.1.1",
"workbox-window": "7.1.0"
},
"browserslist": [
"> 1%",
"last 2 versions"
]
}