-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.68 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.68 KB
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
{
"author": "Serhii Shmyg",
"name": "frontend-ts",
"version": "3.9.0",
"homepage": "https://github.com/sshmyg",
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/sshmyg/frontend/tree/ts"
},
"scripts": {
"analyze": "yarn dev && npx webpack --profile --json > ./dist/stats.json && npx webpack-bundle-analyzer ./dist/stats.json ./dist --mode=server",
"start": "yarn webpack serve",
"start:prod": "yarn prod && npx ws --open",
"dev": "NODE_ENV=development npx webpack --color",
"prod": "NODE_ENV=production npx webpack --color",
"clear": "rm -rf dist node_modules",
"test": "yarn jest --coverage",
"test:watch": "npx jest --watch --coverage",
"tc": "npx tsc --noEmit",
"lint": "npx eslint ./src",
"style": "npx stylelint 'src/**/*.module.css'",
"story": "yarn cosmos",
"prepare": "npx husky"
},
"engines": {
"node": ">=25.0.0"
},
"devDependencies": {
"@babel/cli": "7.28.6",
"@babel/core": "7.29.0",
"@babel/plugin-transform-async-to-generator": "7.28.6",
"@babel/plugin-transform-modules-commonjs": "7.28.6",
"@babel/plugin-transform-react-constant-elements": "7.27.1",
"@babel/plugin-transform-react-inline-elements": "7.27.1",
"@babel/plugin-transform-runtime": "7.29.0",
"@babel/preset-env": "7.29.0",
"@babel/preset-react": "7.28.5",
"@babel/preset-typescript": "7.28.5",
"@commitlint/cli": "20.4.2",
"@commitlint/config-conventional": "20.4.2",
"@pmmmwh/react-refresh-webpack-plugin": "0.6.2",
"@testing-library/dom": "10.4.1",
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "16.3.2",
"@testing-library/user-event": "14.6.1",
"@types/jest": "30.0.0",
"@types/node": "25.3.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "8.56.1",
"@typescript-eslint/parser": "8.56.1",
"autoprefixer": "10.4.27",
"babel-eslint": "10.1.0",
"babel-jest": "30.2.0",
"babel-loader": "10.0.0",
"babel-plugin-module-resolver": "5.0.2",
"babel-plugin-transform-react-class-to-function": "1.2.2",
"copy-webpack-plugin": "14.0.0",
"css-loader": "7.1.4",
"css-minimizer-webpack-plugin": "8.0.0",
"dotenv-webpack": "8.1.1",
"eslint": "9.39.3",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "4.4.4",
"eslint-plugin-i18next": "6.1.3",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jest": "29.15.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"html-webpack-plugin": "5.6.6",
"husky": "9.1.7",
"i18next-xhr-backend": "3.2.2",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"lint-staged": "16.3.1",
"local-web-server": "5.4.0",
"mini-css-extract-plugin": "2.10.0",
"node-notifier": "10.0.1",
"postcss": "8.5.8",
"postcss-loader": "8.2.1",
"postcss-nested": "7.0.2",
"prettier": "3.8.1",
"react-cosmos": "7.1.1",
"react-cosmos-plugin-webpack": "7.1.1",
"react-dev-utils": "12.0.1",
"react-refresh": "0.18.0",
"style-loader": "4.0.0",
"stylelint": "17.4.0",
"stylelint-config-recommended": "18.0.0",
"sugarss": "5.0.1",
"terser-webpack-plugin": "5.3.16",
"typescript": "5.9.3",
"typescript-plugin-css-modules": "5.2.0",
"webpack": "5.105.3",
"webpack-bundle-analyzer": "5.2.0",
"webpack-cli": "6.0.1",
"webpack-dev-server": "5.2.3"
},
"dependencies": {
"i18next": "25.8.13",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-i18next": "16.5.4",
"react-router-dom": "7.13.1"
}
}