-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.83 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 2.83 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "rotki.com",
"version": "2026.9.1",
"private": true,
"packageManager": "pnpm@12.3.4+sha512.961aa41fb077da3a04a441d9f8e15ebc0c96da8ef710b2eb67bf9ee7cb0610eabd48f1fd85f51cffe73846785fa0f87c56a3a872a1d893f8446741b5cce45457",
"type": "module",
"scripts": {
"dev": "run-p dev:website dev:card",
"dev:website": "pnpm --filter @rotki/website dev",
"dev:card": "pnpm --filter @rotki/card-payment dev",
"build": "pnpm build:generate && pnpm build:card && pnpm build:copy",
"build:generate": "pnpm --filter @rotki/website generate",
"build:website": "pnpm --filter @rotki/website build",
"build:card": "pnpm --filter @rotki/card-payment build",
"build:copy": "mkdir -p packages/website/.output/public/checkout/pay/card && cp -r packages/card-payment/dist/* packages/website/.output/public/checkout/pay/card/ && rimraf .output && cp -r packages/website/.output .",
"preview": "pnpm --filter @rotki/website preview",
"clean": "pnpm dlx rimraf node_modules packages/*/node_modules && pnpm store prune && pnpm i",
"start": "pnpm --filter @rotki/website start",
"generate": "pnpm --filter @rotki/website generate",
"lint": "eslint . --ignore-pattern \"packages/**\" && pnpm -r lint",
"lint:fix": "eslint . --ignore-pattern \"packages/**\" --fix && pnpm -r lint:fix",
"lint:all": "pnpm -r lint:all",
"typecheck": "pnpm -r typecheck",
"test": "pnpm -r test",
"test:watch": "pnpm --filter @rotki/website test:watch",
"test:e2e": "pnpm --filter @rotki/website test:e2e",
"test:e2e:coverage": "pnpm --filter @rotki/website test:e2e:coverage",
"test:e2e:ui": "pnpm --filter @rotki/website test:e2e:ui",
"coverage": "pnpm -r coverage",
"check:routes": "node scripts/check-routes.mjs",
"i18n:check": "node scripts/check-i18n.mjs",
"i18n:clean": "node scripts/check-i18n.mjs --delete",
"prepare": "husky",
"release": "bumpp -r --no-push"
},
"devDependencies": {
"@commitlint/cli": "catalog:",
"@commitlint/config-conventional": "catalog:",
"@nuxt/eslint-plugin": "catalog:",
"@rotki/eslint-config": "catalog:",
"@rotki/eslint-plugin": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"cac": "catalog:",
"consola": "catalog:",
"eslint": "catalog:",
"eslint-plugin-tsdoc": "catalog:",
"husky": "catalog:",
"lint-staged": "catalog:",
"npm-run-all2": "catalog:",
"postcss-html": "catalog:",
"rimraf": "catalog:",
"stylelint": "catalog:",
"stylelint-config-recommended-vue": "catalog:",
"stylelint-config-standard": "catalog:",
"stylelint-order": "catalog:"
},
"engines": {
"node": ">=24 <25",
"pnpm": ">=12 <13"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue,md,json,yml}": "eslint",
"*.{css,vue}": "stylelint"
}
}