-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 2.04 KB
/
package.json
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
{
"name": "@interledger/web-monetization-tools",
"version": "1.0.2",
"homepage": "https://github.com/interledger/web-monetization-tools#readme",
"bugs": "https://github.com/interledger/web-monetization-tools/issues",
"license": "Apache-2.0",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/interledger/web-monetization-tools"
},
"author": "Arpi <arpad.lengyel@breakpointit.eu>",
"scripts": {
"build": "pnpm -r build",
"clean": "pnpm clean:modules && pnpm clean:builds",
"clean:builds": "find . \\( -name \"dist\" -o -name \".next\" \\) -type d -prune -exec rm -rf '{}' +",
"clean:modules": "find . -name 'node_modules' -type d -prune -exec rm -rf '{}' +",
"format": "prettier . --write --cache --cache-location='node_modules/.cache/prettiercache' --log-level=warn",
"format:check": "prettier . --check --cache --cache-location='node_modules/.cache/prettiercache'",
"lint": "eslint . --fix --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
"lint:check": "eslint . --cache --cache-location 'node_modules/.cache/eslintcache' --max-warnings 0",
"localenv:install": "pnpm i && pnpm --filter ./backend install && pnpm --filter ./frontend install",
"localenv:start": "docker compose -f ./docker/dev/docker-compose.yml build --no-cache && docker compose -f ./docker/dev/docker-compose.yml up -d",
"localenv:up": "docker compose -f ./docker/dev/docker-compose.yml",
"localenv:stop": "docker compose -f ./docker/dev/docker-compose.yml down",
"typecheck": "pnpm -r typecheck"
},
"devDependencies": {
"@eslint/js": "^9.13.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react": "^7.33.2",
"globals": "^15.11.0",
"prettier": "^3.3.3",
"typescript-eslint": "^8.12.2"
},
"resolutions": {
"esbuild": "0.23.1"
},
"engines": {
"pnpm": "^9.12.1",
"npm": "pnpm",
"yarn": "pnpm",
"node": "^20.12.1"
},
"private": true,
"packageManager": "pnpm@9.12.1"
}