-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1.03 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
{
"name": "grat",
"private": true,
"type": "module",
"description": "Grat monorepo",
"scripts": {
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"test": "pnpm -r test",
"dev": "pnpm -r dev",
"test:integration": "pnpm --filter @grat/server exec vitest tests/integration.test.ts --run",
"test:unit": "pnpm --filter @grat-official-sdk/sdk exec vitest tests/Grat.test.ts --run",
"format": "prettier --write \"**/*.{ts,js,json,md}\"",
"smoke-test": "tsx scripts/smoke-test.ts",
"db:migrate": "pnpm --filter @grat/server db:migrate",
"db:seed": "pnpm --filter @grat/server db:seed"
},
"devDependencies": {
"@eslint/js": "^9.2.0",
"@grat-official-sdk/sdk": "0.4.0",
"@stellar/stellar-sdk": "^15.1.0",
"@types/supertest": "^7.2.0",
"eslint": "^9.2.0",
"globals": "^15.1.0",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"supertest": "^7.2.2",
"tsx": "^4.7.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.8.0",
"vitest": "^4.1.5"
},
"version": "0.4.0"
}