-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.47 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.47 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
{
"name": "troy-zada",
"version": "0.1.0",
"private": true,
"dependencies": {
"react": "^18.3.1",
"react-d3-cloud": "^1.0.6",
"react-dom": "^18.3.1",
"react-ga4": "^2.1.0",
"react-icons": "^5.2.1",
"react-router-dom": "^6.24.1",
"react-scripts": "^5.0.1",
"react-transition-group": "^4.4.5",
"web-vitals": "^4.2.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"jsx",
"json",
"css"
],
"moduleNameMapper": {
"\\.(css|webp)$": "<rootDir>/tests/__mocks__/MockStyles.js"
},
"setupFilesAfterEnv": [
"<rootDir>/tests/setupTests.js"
],
"testEnvironment": "jsdom"
},
"scripts": {
"build": "react-scripts build",
"lint": "eslint .",
"prettier:check": "prettier --check .",
"prettier:write": "prettier --write .",
"start": "react-scripts start",
"test": "jest ./tests"
},
"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"
]
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.24.8",
"@babel/preset-react": "^7.24.7",
"@testing-library/jest-dom": "^6.4.6",
"@testing-library/react": "^16.0.0",
"@testing-library/user-event": "^14.5.2",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"prettier": "^3.3.3"
}
}