forked from interledger/testnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 2.27 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
50
51
52
53
54
55
56
{
"name": "@interledger/testnet",
"version": "1.0.0",
"homepage": "https://github.com/interledger/testnet#readme",
"bugs": "https://github.com/interledger/testnet/issues",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/interledger/testnet"
},
"scripts": {
"boutique:backend": "pnpm --filter @boutique/backend --",
"boutique:frontend": "pnpm --filter @boutique/frontend --",
"build": "pnpm -r build",
"checks": "pnpm prettier:check && pnpm lint:check",
"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 '{}' +",
"dev": "pnpm localenv:start && concurrently -n 'WALLET,BOUTIQUE' -c blue.bold,red.bold 'pnpm wallet:frontend dev' 'pnpm boutique:frontend dev'",
"format": "pnpm prettier:write && pnpm lint:fix",
"lint:check": "eslint -c '.eslintrc.js' --max-warnings=0 .",
"lint:fix": "eslint -c '.eslintrc.js' --max-warnings=0 --fix .",
"compose": "docker compose -f ./docker/dev/docker-compose.yml",
"compose:prod": "docker compose -f ./docker/prod/docker-compose.yml",
"localenv:start": "pnpm compose up -d --build",
"localenv:stop": "pnpm compose down",
"preinstall": "npx only-allow pnpm",
"prettier:write": "prettier --config '.prettierrc.js' --write .",
"prettier:check": "prettier --config '.prettierrc.js' --check .",
"prod": "pnpm compose:prod up -d --build",
"prod:down": "pnpm compose:prod down",
"wallet:backend": "pnpm --filter @wallet/backend --",
"wallet:frontend": "pnpm --filter @wallet/frontend --"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"concurrently": "^8.2.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.35.0",
"eslint-plugin-react-hooks": "^4.6.2",
"only-allow": "^1.2.1",
"prettier": "^3.3.3",
"prettier-plugin-tailwindcss": "^0.6.5",
"typescript": "^5.5.4"
},
"engines": {
"pnpm": "^9.1.4",
"npm": "pnpm",
"yarn": "pnpm",
"node": "^20.12.1"
},
"private": true,
"packageManager": "[email protected]"
}