-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.41 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.41 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
59
60
61
62
63
64
65
66
67
68
69
{
"name": "@tern-secure/auth-ts",
"version": "0.0.0",
"private": true,
"license": "MIT",
"scripts": {
"build": "turbo build --concurrency=${TURBO_CONCURRENCY:-80%}",
"build:add": "turbo build:add --concurrency=${TURBO_CONCURRENCY:-80%}",
"changeset": "changeset",
"changeset:empty": "pnpm changeset --empty",
"check-types": "turbo run check-types",
"clean": "turbo run clean && rm -rf node_modules",
"dev": "turbo dev",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"lint": "turbo run lint",
"lint:fix": "turbo lint -- --fix",
"release": "changeset publish && git push --follow-tags",
"release:canary": "changeset publish --tag canary --no-git-tag",
"release:snapshot": "changeset publish --tag snapshot --no-git-tag",
"version-packages": "changeset version && pnpm install --lockfile-only --engine-strict=false",
"version-packages:canary": "./scripts/canary.mjs",
"version-packages:snapshot": "./scripts/snapshot.mjs"
},
"devDependencies": {
"@changesets/cli": "^2.29.4",
"@changesets/get-github-info": "^0.6.0",
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.28.0",
"@google-cloud/storage": "^7.16.0",
"@tern-secure/backend": "workspace:*",
"@types/node": "^22.15.29",
"@types/react": "catalog:react",
"@types/react-dom": "catalog:react",
"@typescript-eslint/eslint-plugin": "^8.33.0",
"@typescript-eslint/parser": "^8.33.0",
"@vitest/coverage-v8": "^3.2.4",
"cpy-cli": "^5.0.0",
"dotenv": "^16.5.0",
"dotenv-cli": "^8.0.0",
"eslint": "^9.28.0",
"eslint-config-prettier": "10.1.2",
"eslint-config-turbo": "2.5.0",
"eslint-import-resolver-typescript": "3.10.0",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-simple-import-sort": "12.1.1",
"eslint-plugin-turbo": "2.5.0",
"eslint-plugin-unused-imports": "4.1.4",
"globals": "^15.14.0",
"prettier": "^3.5.3",
"prettier-plugin-packagejson": "^2.5.15",
"prettier-plugin-tailwindcss": "^0.6.12",
"react": "catalog:react",
"react-dom": "catalog:react",
"rimraf": "6.0.1",
"tsup": "^8.5.0",
"turbo": "^2.5.6",
"typescript": "catalog:repo",
"typescript-eslint": "8.30.1",
"vitest": "^3.2.4",
"zx": "catalog:repo"
},
"packageManager": "pnpm@10.13.1",
"engines": {
"node": ">=20",
"pnpm": ">=9.0.0"
}
}