-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.07 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.07 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
{
"name": "jalin",
"private": true,
"workspaces": [
"sdk",
"app"
],
"scripts": {
"test": "npm test --workspace jalin-sdk",
"test:contracts": "sh contracts/test.sh",
"dev": "npm run dev --workspace app",
"build": "npm run build --workspace app",
"build:sdk": "npm run build --workspace jalin-sdk",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"check:links": "node scripts/check-links.mjs",
"lint": "eslint sdk e2e scripts playwright.config.ts && npm run lint --workspace app",
"typecheck": "tsc --noEmit -p tsconfig.json && npm run typecheck --workspace jalin-sdk && npm run typecheck --workspace app",
"check:dead": "knip",
"publish:sdk": "node scripts/publish-sdk.mjs"
},
"dependencies": {
"@scure/starknet": "^2.3.0",
"starknet": "^10.7.1"
},
"devDependencies": {
"@axe-core/playwright": "^4.13.0",
"jalin-sdk": "^0.1.0",
"@playwright/test": "^1.62.1",
"eslint": "^9.39.5",
"knip": "^5.88.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.68.0"
}
}