-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 977 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 977 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
{
"name": "cryptocurrencyproject",
"version": "0.1.0",
"private": true,
"type": "module",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev:web": "npm run dev -w @crypto/web",
"dev:api": "npm run dev -w @crypto/api",
"build": "npm run build --workspaces --if-present",
"lint": "npm run lint --workspaces --if-present",
"typecheck": "npm run typecheck --workspaces --if-present",
"test": "node --test --experimental-strip-types tests/**/*.test.ts",
"install:deps": "node scripts/install-deps.mjs",
"setup:supabase-env": "node scripts/setup-supabase-env.mjs",
"check:merge-markers": "rg \"^(<<<<<<<|=======|>>>>>>>)\" -n --glob '!node_modules/**' --glob '!apps/web/node_modules/**' --glob '!pnpm-lock.yaml' . && (echo '\u274c Merge markers found' && exit 1) || echo '\u2705 No merge markers found'"
},
"devDependencies": {
"eslint": "^9.23.0",
"prettier": "^3.5.3",
"typescript": "^5.8.2"
}
}