-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 965 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 965 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
32
33
34
35
36
{
"name": "pakomarket",
"version": "0.1.0",
"private": true,
"description": "Crypto-native prediction market for Africa",
"workspaces": [
"apps/*",
"packages/*",
"contracts",
"docs"
],
"scripts": {
"dev": "pnpm --filter @pakomarket/web dev",
"build": "pnpm --filter @pakomarket/web build",
"test": "pnpm --filter @pakomarket/contracts test",
"lint": "pnpm -r lint",
"typecheck": "pnpm -r typecheck",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "pnpm -r clean && rm -rf node_modules"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@8.15.0"
}