forked from Ethereal-Future/FuTuRe
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 906 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 906 Bytes
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
{
"name": "stellar-remittance",
"version": "1.0.0",
"description": "Cross-border remittance platform on Stellar blockchain",
"private": true,
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:backend": "npm run dev --workspace=backend",
"dev:frontend": "npm run dev --workspace=frontend",
"build": "npm run build --workspaces",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"test:parallel": "vitest run --workers 4"
},
"devDependencies": {
"@testing-library/jest-dom": "6.9.1",
"@testing-library/react": "14.3.1",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/ui": "4.1.1",
"concurrently": "^8.2.2",
"jsdom": "29.0.1",
"supertest": "^7.2.2",
"vitest": "4.1.1"
}
}