forked from hqwuzhaoyi/gpt-subtitle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 2.34 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
{
"private": true,
"scripts": {
"build": "dotenv -- turbo run build",
"build-package": "dotenv -- turbo run build --filter='./packages/*'",
"changelog": "echo 'generate master changelog' && conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"changeset": "changeset",
"changeset-publish": "changeset publish",
"changeset-tag": "changeset tag",
"coverage:per-package": "npm run test:coverage",
"coverage:total": "npm run coverage:per-package && node coverage-total.js",
"ci:publish": "pnpm build-package && git status && pnpm publish -r --no-git-checks && pnpm changeset tag",
"ci:test": "cp .env.template .env && pnpm build && pnpm with-env turbo run test --no-cache --continue",
"ci:version": "pnpm changelog && pnpm changeset version && pnpm install --no-frozen-lockfile && git add .",
"clean": "turbo run clean",
"deploy:dev": "./check-pm2.sh npm run build && pm2 startOrRestart ecosystem.config.js --env development",
"deploy:local": "./check-pm2.sh npm run build && pm2 startOrRestart ecosystem.config.js --env local",
"deploy:prod": "./check-pm2.sh npm run build && pm2 startOrRestart ecosystem.config.js --env production",
"dev": "dotenv -- turbo run dev --no-cache --concurrency=14",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo run lint",
"publish-packages": "changeset version && changeset publish",
"sort": "npx sort-package-json",
"test": "pnpm with-env turbo run test --no-cache --continue -- --testLocationInResults --passWithNoTests",
"test:coverage": "pnpm with-env turbo run test:coverage --no-cache --continue -- --passWithNoTests",
"test:watch": "pnpm with-env turbo run test:watch --no-cache --continue",
"with-env": "dotenv -e .env.local --",
"env:push": "npx dotenv-vault@latest push",
"env:pull": "npx dotenv-vault@latest pull"
},
"dependencies": {
"dotenv": "^16.3.1",
"dotenv-cli": "^7.3.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/node": "^20.9.0",
"changeset": "^0.2.6",
"conventional-changelog-cli": "^4.1.0",
"eslint": "^8.53.0",
"eslint-config-custom": "workspace:^",
"jest": "^29.7.0",
"prettier": "^3.1.0",
"turbo": "^1.10.16"
},
"packageManager": "pnpm@8.8.0",
"volta": {
"node": "18.17.1",
"pnpm": "8.8.0"
}
}