-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
66 lines (66 loc) · 2.32 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
57
58
59
60
61
62
63
64
65
66
{
"name": "scow",
"private": true,
"version": "1.6.3",
"scripts": {
"build": "turbo run build",
"build:libs": "turbo run build --filter \"./libs/**\"",
"build:images": "docker build -f docker/Dockerfile.scow -t scow .",
"build:protos": "turbo run build --filter \"./libs/protos/**\"",
"prepareDev": "pnpm build:libs && turbo run prepareDev",
"prune": "pnpm clean --yes && pnpm bootstrap --ci -- --production",
"dev:libs": "turbo run dev --concurrency 100% --filter \"./libs/**\"",
"devenv": "docker compose --env-file dev/.env.dev -f dev/docker-compose.dev.yml up -d",
"devenv:stop": "docker compose --env-file dev/.env.dev -f dev/docker-compose.dev.yml down",
"test": "turbo run test",
"test:ci": "pnpm run -r test --ci --coverage --runInBand",
"prepare": "node -e \"try { import('husky').then((d) => console.log(d.default())) } catch (e) {if (e.code !== 'MODULE_NOT_FOUND' && !e.message.startsWith('.git')) throw e}\"",
"lint": "turbo run lint --continue",
"ci:version": "node scripts/version.mjs",
"ci:publish": "pnpm publish -r",
"api:breaking": "cd protos && pnpm exec buf breaking --against '../.git#subdir=protos'"
},
"devDependencies": {
"@bufbuild/buf": "1.34.0",
"@changesets/cli": "2.27.6",
"@commitlint/config-conventional": "19.2.2",
"@ddadaal/eslint-config": "2.1.0",
"@pnpm/lockfile-file": "9.1.1",
"@pnpm/logger": "5.0.0",
"@types/jest": "29.5.12",
"@types/node": "20.14.8",
"concurrently": "8.2.2",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.4.5",
"dotenv-cli": "7.4.2",
"eslint": "9.6.0",
"front-matter": "4.0.2",
"globby": "14.0.1",
"husky": "9.0.11",
"jest": "29.7.0",
"jest-extended": "4.0.2",
"node-glob": "1.2.0",
"nodemon": "3.1.4",
"pino-pretty": "10.3.1",
"pm2": "5.4.1",
"rimraf": "6.0.1",
"ts-jest": "29.1.5",
"ts-node": "10.9.2",
"tsc-alias": "1.8.10",
"tsconfig-paths": "4.2.0",
"turbo": "2.0.4",
"typescript": "5.5.2",
"eslint-plugin-license-header": "0.6.1"
},
"volta": {
"node": "20.15.0"
},
"packageManager": "pnpm@9.4.0",
"pnpm": {
"patchedDependencies": {
"react-typed-i18n@2.3.0": "patches/react-typed-i18n@2.3.0.patch",
"next@14.2.4": "patches/next@14.2.4.patch"
}
}
}