-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 2.22 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
{
"name": "ticket-tokens",
"version": "1.0.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.0",
"@hashgraph/sdk": "^2.55.1",
"@mui/material": "^6.2.0",
"@mui/system": "^6.2.0",
"@reduxjs/toolkit": "^2.5.0",
"@testing-library/jest-dom": "^6.6.3",
"@testing-library/react": "^16.1.0",
"@testing-library/user-event": "^14.5.2",
"axios": "^1.7.9",
"binary-loader": "^0.0.1",
"bootstrap": "^5.3.3",
"buffer": "^6.0.3",
"expo": "^49.0.16",
"hashconnect": "^3.0.13",
"mongodb": "^6.12.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-redux": "^9.2.0",
"react-router-dom": "^7.0.2",
"react-scripts": "5.0.1",
"simple-crypto-js": "^3.0.1",
"web-vitals": "^4.2.4",
"winston": "^3.17.0"
},
"scripts": {
"start": "set HTTPS=true&&react-scripts start",
"build": "react-scripts build",
"test": "react-scripts test --watchAll",
"eject": "react-scripts eject",
"lint": "eslint --config config/.eslintrc.json --ignore-path config/.eslintignore 'src/**/*.{js,jsx}' --fix",
"prettier": "prettier --config config/.prettierrc --ignore-path config/.prettierignore --write 'src/**/*.{js,jsx,json,css,md}'"
},
"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/plugin-proposal-private-property-in-object": "^7.21.11",
"@babel/preset-env": "^7.26.0",
"@babel/preset-react": "^7.26.3",
"@babel/preset-typescript": "^7.26.0",
"babel-jest": "^29.7.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mongosh": "^2.3.6",
"prettier": "^3.4.2",
"source-map-loader": "^5.0.0"
},
"jest": {
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "babel-jest"
},
"transformIgnorePatterns": [
"/node_modules/(?!@hashgraph/sdk|axios)"
]
}
}