-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
113 lines (113 loc) · 3.58 KB
/
package.json
File metadata and controls
113 lines (113 loc) · 3.58 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
110
111
112
113
{
"name": "microfrontend-template",
"description": "This is a template for creating a micro-frontend react app.",
"version": "1.0.34",
"author": "badboyku",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/badboyku/microfrontend-template.git"
},
"main": "src/index",
"engines": {
"node": ">=22",
"npm": ">=10",
"yarn": ">=1"
},
"scripts": {
"prepare": "husky",
"start": "NODE_ENV=development runtime-env-cra --config-name=./public/runtime-env.js && webpack-cli serve",
"start:dist": "http-server ./dist",
"build": "webpack --mode production",
"clean:build": "rimraf ./dist",
"clean:modules": "rimraf ./node_modules",
"clean:coverage": "rimraf ./test_coverage",
"lint": "eslint \"./src/**/*.{js,jsx,ts,tsx}\"",
"lint:fix": "eslint \"./src/**/*.{js,jsx,ts,tsx}\" --fix",
"lint-staged": "TZ=UTC lint-staged",
"prettier": "prettier --check \"./src/**/*.{css,scss,json}\"",
"prettier:fix": "prettier --write \"./src/**/*.{css,scss,json}\"",
"test": "TZ=UTC jest",
"test:coverage": "TZ=UTC jest --coverage",
"test:watch": "TZ=UTC jest --watch"
},
"lint-staged": {
"src/**/*.{css,scss,json}": [
"prettier --write"
],
"src/**/*.{js,jsx,ts,tsx}": [
"eslint --fix",
"jest -u --findRelatedTests --passWithNoTests"
]
},
"browserslist": [
">0.2% and not dead and not op_mini all"
],
"dependencies": {
"@babel/runtime": "^7.28.6",
"@babel/runtime-corejs3": "^7.29.0",
"core-js": "^3.48.0",
"jwt-decode": "^4.0.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router": "^7.13.1",
"runtime-env-cra": "^0.2.4"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@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",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@svgr/webpack": "^8.1.0",
"@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.5",
"@types/react": "^19.2.14",
"@types/react-dom": "^19.2.3",
"babel-jest": "^30.2.0",
"babel-loader": "^10.1.0",
"babel-plugin-module-resolver": "^5.0.2",
"browserslist": "^4.28.1",
"copy-webpack-plugin": "^14.0.0",
"css-loader": "^7.1.4",
"css-minimizer-webpack-plugin": "^8.0.0",
"dotenv": "^17.3.1",
"eslint-config-badboyku": "^1.0.46",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-webpack-plugin": "^5.0.3",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"identity-obj-proxy": "^3.0.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-fetch-mock": "^3.0.3",
"jest-watch-typeahead": "^3.0.1",
"lint-staged": "^16.3.2",
"mini-css-extract-plugin": "^2.10.0",
"postcss": "^8.5.8",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.2.1",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^11.2.0",
"react-refresh": "^0.18.0",
"resolve": "^1.22.11",
"resolve-url-loader": "^5.0.0",
"rimraf": "^6.1.3",
"sass": "^1.97.3",
"sass-loader": "^16.0.7",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"terser-webpack-plugin": "^5.3.17",
"typescript": "^5.9.3",
"webpack": "^5.105.4",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.3",
"webpack-manifest-plugin": "^6.0.1"
}
}