forked from PKUHPC/OpenSCOW
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 2.24 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
{
"name": "scow",
"private": true,
"version": "0.4.0",
"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 protos",
"prepareDev": "pnpm build:libs && turbo run prepareDev",
"prune": "pnpm clean --yes && pnpm bootstrap --ci -- --production",
"dev:libs": "turbo run dev --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 { require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND' && !e.message.startsWith('.git')) throw e}\"",
"lint": "turbo run lint lint:ts",
"lint:ts": "eslint --cache --ext .tsx,.ts .",
"ci:version": "node scripts/version.mjs",
"ci:publish": "pnpm publish -r"
},
"devDependencies": {
"turbo": "1.9.3",
"@ddadaal/eslint-config": "1.9.0",
"@commitlint/config-conventional": "17.6.1",
"@types/jest": "29.5.1",
"@types/node": "18.16.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"cross-env": "7.0.3",
"cz-conventional-changelog": "3.3.0",
"dotenv": "16.0.3",
"dotenv-cli": "7.2.1",
"eslint": "8.39.0",
"eslint-import-resolver-typescript": "3.5.5",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-simple-import-sort": "10.0.0",
"eslint-plugin-license-header": "0.6.0",
"husky": "8.0.3",
"jest": "29.5.0",
"jest-extended": "3.2.4",
"nodemon": "2.0.22",
"pino-pretty": "10.0.0",
"rimraf": "5.0.0",
"ts-jest": "29.1.0",
"ts-node": "10.9.1",
"tsc-alias": "1.8.5",
"tsconfig-paths": "4.2.0",
"typescript": "5.0.4",
"@pnpm/lockfile-file": "8.0.2",
"@pnpm/logger": "5.0.0",
"pm2": "5.3.0",
"concurrently": "8.0.1",
"node-glob": "1.2.0",
"globby": "13.1.4",
"@changesets/cli": "2.26.1",
"@bufbuild/buf": "1.15.0"
},
"volta": {
"node": "18.16.0"
},
"packageManager": "[email protected]"
}