-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 2.33 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 2.33 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
{
"name": "proxy-server",
"version": "1.0.0",
"description": "Proxy Server",
"type": "module",
"scripts": {
"lint:check": "eslint --max-warnings=0 -c eslint.config.ts",
"lint:fix": "eslint --fix -c eslint.config.ts",
"lint:format:check": "prettier . -c --config prettier.config.ts --ignore-path .prettierignore",
"lint:format:fix": "prettier . -w --config prettier.config.ts --ignore-path .prettierignore",
"lint:cleanup": "knip -c knip.config.ts",
"lint:editor": "editorconfig-checker",
"lint:fs": "ls-lint -config .ls-lint.yml",
"docker:local:up": "docker compose -f docker-compose.local.yml up -d --no-color --timestamps --wait --wait-timeout 20",
"docker:local:down": "docker compose -f docker-compose.local.yml down -v",
"docker:local:start": "docker compose -f docker-compose.local.yml start",
"docker:local:stop": "docker compose -f docker-compose.local.yml stop -t 10",
"docker:prod:up": "docker compose -f docker-compose.prod.yml up -d --no-color --timestamps --wait --wait-timeout 20",
"docker:prod:down": "docker compose -f docker-compose.prod.yml down -v",
"docker:prod:start": "docker compose -f docker-compose.prod.yml start",
"docker:prod:stop": "docker compose -f docker-compose.prod.yml stop -t 10",
"hooks:init": "simple-git-hooks",
"hooks:precommit": "lint-staged -c lint-staged.config.ts",
"hooks:prepush": "concurrently 'npm run build -w apps/backend' 'npm run build -w apps/web'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maxonchickdev/proxy-server.git"
},
"keywords": [],
"author": "maxondev",
"license": "ISC",
"bugs": {
"url": "https://github.com/maxonchickdev/proxy-server/issues"
},
"homepage": "https://github.com/maxonchickdev/proxy-server#readme",
"workspaces": [
"apps/web",
"apps/backend",
"libs/shared"
],
"devDependencies": {
"@commitlint/cli": "^20.4.1",
"@commitlint/config-conventional": "^20.4.1",
"@ls-lint/ls-lint": "^2.3.1",
"concurrently": "^9.2.1",
"editorconfig-checker": "^6.1.1",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"knip": "^5.83.0",
"lint-staged": "^16.2.7",
"prettier": "^3.8.1",
"simple-git-hooks": "^2.13.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.54.0"
}
}