-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.45 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.45 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
{
"name": "stellar-dashboard",
"prettier": "@stellar/prettier-config",
"version": "1.0.0",
"description": "",
"main": "app.js",
"engines": {
"node": "22.x"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"heroku-postbuild": "vite build",
"dev:backend": "tsx watch backend/app.ts",
"dev:full": "concurrently \"npm run dev\" \"npm run dev:backend\"",
"lint:prettier": "prettier --config --write '**/*.js'",
"test": "DEV=true mocha -r ts-node/register './test/**/*.ts' --exit",
"start:backend": "UPDATE_DATA=true DEV=true ts-node backend/app.ts",
"prepare": "husky install",
"pre-commit": "lint-staged"
},
"lint-staged": {
"**/*.js": [
"prettier --write"
],
"./backend/*.ts": "eslint --cache"
},
"resolutions": {
"**/ua-parser-js": "0.7.28"
},
"author": "Stellar.org",
"dependencies": {
"@google-cloud/bigquery": "^5.10.0",
"@stellar/prettier-config": "^1.0.1",
"@stellar/stellar-sdk": "^14.4.3",
"axios": "^1.13.2",
"bignumber.js": "^9.0.1",
"bourbon": "^7.3.0",
"d3": "^7.9.0",
"dompurify": "^2.2.6",
"dotenv": "^16.0.0",
"express": "^4.14.0",
"express-http-proxy": "^1.0.6",
"express-rate-limit": "^8.2.1",
"fbemitter": "^2.1.1",
"html-react-parser": "^1.2.4",
"lodash": "^4.17.21",
"moment": "^2.17.1",
"morgan": "^1.8.2",
"muicss": "^0.9.5",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"redis": "^4.0.1"
},
"devDependencies": {
"@stellar/tsconfig": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/express": "^4.17.13",
"@types/express-http-proxy": "^1.6.3",
"@types/express-rate-limit": "^5.1.3",
"@types/lodash": "^4.14.178",
"@types/mocha": "^9.0.0",
"@types/morgan": "^1.9.3",
"@types/proxy-addr": "^2.0.3",
"@types/react": "^18.2.0",
"@types/react-dom": "^18.2.0",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^5.9.1",
"@typescript-eslint/parser": "^5.9.1",
"@vitejs/plugin-react": "^4.0.0",
"chai": "^4.3.4",
"concurrently": "^7.6.0",
"eslint": "^8.6.0",
"eslint-config-prettier": "^8.3.0",
"husky": ">=6",
"lint-staged": ">=10",
"mocha": "^8.4.0",
"prettier": "^2.5.1",
"sass": "^1.60.0",
"supertest": "^6.1.6",
"ts-node": "^10.4.0",
"tsx": "^3.12.0",
"typescript": "^5.9.3",
"vite": "^4.3.0",
"vite-plugin-node-polyfills": "^0.24.0"
}
}