-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.21 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.21 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
114
115
116
117
{
"name": "webapp",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "^7.28.6",
"@pmmmwh/react-refresh-webpack-plugin": "^0.6.2",
"@svgr/webpack": "^8.1.0",
"@types/node": "^25.0.8",
"@types/react": "^19.2.8",
"@types/react-dom": "^19.2.3",
"babel-loader": "^10.0.0",
"babel-plugin-named-asset-import": "^0.3.8",
"babel-preset-react-app": "^10.1.0",
"bfj": "^9.1.2",
"browserslist": "^4.28.1",
"camelcase": "^9.0.0",
"case-sensitive-paths-webpack-plugin": "^2.4.0",
"css-loader": "^7.1.2",
"css-minimizer-webpack-plugin": "^7.0.4",
"dotenv": "^17.2.3",
"dotenv-expand": "^12.0.3",
"eslint": "^9.39.2",
"eslint-config-react-app": "^7.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.5.4",
"eslint-webpack-plugin": "^5.0.2",
"file-loader": "^6.2.0",
"fs-extra": "^11.3.3",
"google-protobuf": "^4.0.1",
"grpc-web": "^2.0.2",
"gts": "^7.0.0",
"html-webpack-plugin": "^5.6.5",
"identity-obj-proxy": "^3.0.0",
"mini-css-extract-plugin": "^2.9.4",
"postcss": "^8.5.6",
"postcss-flexbugs-fixes": "^5.0.2",
"postcss-loader": "^8.2.0",
"postcss-normalize": "^13.0.1",
"postcss-preset-env": "^11.0.1",
"prompts": "^2.4.2",
"react": "^19.2.3",
"react-app-polyfill": "^3.0.0",
"react-dev-utils": "^12.0.1",
"react-dom": "^19.2.3",
"react-refresh": "^0.18.0",
"resolve": "^1.22.11",
"resolve-url-loader": "^5.0.0",
"sass-loader": "^16.0.6",
"semver": "^7.7.3",
"source-map-loader": "^5.0.0",
"style-loader": "^4.0.0",
"tailwindcss": "^4.1.18",
"terser-webpack-plugin": "^5.3.16",
"ts-node": "^10.9.2",
"typescript": "^5.9.3",
"webpack": "^5.104.1",
"webpack-dev-server": "^5.2.3",
"webpack-manifest-plugin": "^6.0.1",
"workbox-webpack-plugin": "^7.4.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.2",
"@jest/globals": "^30.2.0",
"@playwright/test": "^1.57.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.1",
"@testing-library/user-event": "^14.6.1",
"@types/aria-query": "^5.0.4",
"@types/google-protobuf": "^3.15.12",
"@types/jest": "^30.0.0",
"babel-jest": "^30.2.0",
"eslint-plugin-n": "^17.23.2",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"jest-junit": "^16.0.0",
"jest-resolve": "^30.2.0",
"jest-watch-typeahead": "^3.0.1"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "jest",
"test:ci": "jest --reporters=default --reporters=jest-junit",
"lint": "gts lint",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn run lint"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"babel": {
"presets": [
"react-app"
]
}
}