-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.64 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.64 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
{
"name": "theta-chain-explorer",
"version": "0.1.0",
"private": true,
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@fontsource/roboto": "^5.0.13",
"@fortawesome/fontawesome-free": "^6.5.2",
"@mui/icons-material": "^5.17.1",
"@mui/material": "^5.15.15",
"@reduxjs/toolkit": "^2.2.3",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^13.5.0",
"@types/jest": "^29.5.12",
"@types/react": "^18.3.20",
"@types/react-dom": "^18.3.5",
"axios": "^1.6.8",
"bcryptjs": "^2.4.3",
"bitcoin-core": "^4.2.0",
"bootstrap": "^5.3.3",
"classnames": "^2.5.1",
"config": "^3.3.3",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.18.2",
"express-validator": "^6.15.0",
"firebase": "^10.11.1",
"gravatar": "^1.8.1",
"jsonwebtoken": "^9.0.1",
"mongoose": "^7.5.0",
"node-fetch": "^3.3.2",
"normalize-url": "^7.1.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-helmet": "^6.1.0",
"react-redux": "^9.1.1",
"react-router-dom": "^6.23.0",
"react-scripts": "5.0.1",
"redux": "^5.0.1",
"redux-saga": "^1.3.0",
"room-populate": "^1.0.17",
"typescript": "^5.8.2",
"web-vitals": "^2.1.4"
},
"scripts": {
"start": "concurrently \"react-scripts start\" \"node dist/backend/app.js\"",
"dev": "concurrently \"react-scripts start\" \"nodemon src/backend/app.ts\"",
"start-backend": "node dist/backend/app.js",
"dev-backend": "nodemon src/backend/app.ts",
"build-backend": "tsc",
"build": "react-scripts build",
"test": "react-scripts test",
"eject": "react-scripts eject"
},
"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",
"@types/express": "^4.17.21",
"@types/mongoose": "^5.11.96",
"@types/node": "^22.13.14",
"concurrently": "^5.3.0",
"nodemon": "^2.0.6"
},
"json.schemas": [
{
"fileMatch": [
"package.json"
],
"url": "./local-schemas/package-schema.json"
}
]
}