forked from Kevin737866/-stellar-analytics-dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.35 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.35 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
{
"name": "stellar-analytics-dashboard",
"version": "1.0.0",
"description": "A comprehensive analytics platform for the Stellar blockchain",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "concurrently \"npm run dev:indexer\" \"npm run dev:api\" \"npm run dev:frontend\"",
"dev:indexer": "npm run dev --workspace=@stellar-analytics/indexer",
"dev:api": "npm run dev --workspace=@stellar-analytics/api",
"dev:frontend": "npm run dev --workspace=@stellar-analytics/frontend",
"build": "npm run build --workspaces",
"test": "npm run test --workspaces",
"lint": "eslint packages --ext .ts,.tsx",
"lint:fix": "eslint packages --ext .ts,.tsx --fix",
"type-check": "tsc --noEmit",
"clean": "npm run clean --workspaces && rm -rf node_modules",
"db:migrate": "npm run db:migrate --workspace=@stellar-analytics/indexer",
"db:seed": "npm run db:seed --workspace=@stellar-analytics/indexer"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"concurrently": "^8.2.2",
"eslint": "^8.54.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0",
"npm": ">=9.0.0"
}
}