forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 4.4 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@clerk/javascript",
"version": "0.0.0",
"private": true,
"license": "MIT",
"workspaces": {
"packages": [
"packages/*"
]
},
"scripts": {
"build": "FORCE_COLOR=1 turbo build --concurrency=${TURBO_CONCURRENCY:-80%}",
"bundlewatch": "turbo bundlewatch",
"changeset": "changeset",
"changeset:empty": "npm run changeset -- --empty",
"clean": "turbo clean",
"dev": "FORCE_COLOR=1 turbo dev --filter=@clerk/* --filter=!@clerk/expo",
"dev:js": "FORCE_COLOR=1 turbo dev:current --filter=@clerk/clerk-js",
"format": "prettier --write .",
"format:check": "prettier --cache --check .",
"lint": "FORCE_COLOR=1 turbo lint",
"lint:attw": "FORCE_COLOR=1 turbo lint:attw",
"lint:fix": "FORCE_COLOR=1 turbo lint -- --fix",
"lint:publint": "FORCE_COLOR=1 turbo lint:publint",
"nuke": "./scripts/nuke.sh",
"prepare": "husky install",
"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",
"release:verdaccio": "if [ \"$(npm config get registry)\" = \"https://registry.npmjs.org/\" ]; then echo 'Error: Using default registry' && exit 1; else TURBO_CONCURRENCY=1 npm run build && changeset publish --no-git-tag; fi",
"test": "FORCE_COLOR=1 turbo test --concurrency=${TURBO_CONCURRENCY:-80%}",
"test:cache:clear": "FORCE_COLOR=1 turbo test:cache:clear --continue --concurrency=${TURBO_CONCURRENCY:-80%}",
"test:integration:base": "DEBUG=1 npx playwright test --config integration/playwright.config.ts",
"test:integration:cleanup": "DEBUG=1 npx playwright test --config integration/playwright.cleanup.config.ts",
"test:integration:deployment:nextjs": "DEBUG=1 npx playwright test --config integration/playwright.deployments.config.ts",
"test:integration:express": "E2E_APP_ID=express.* npm run test:integration:base -- --grep @express",
"test:integration:generic": "E2E_APP_ID=react.vite.* npm run test:integration:base -- --grep @generic",
"test:integration:nextjs": "E2E_APP_ID=next.appRouter.* npm run test:integration:base -- --grep @nextjs",
"test:integration:remix": "echo 'placeholder'",
"turbo:clean": "turbo daemon clean",
"update:lockfile": "npm run nuke && npm install -D --arch=x64 --platform=linux turbo && npm install -D --arch=arm64 --platform=darwin turbo",
"version": "changeset version && ./scripts/version-info.sh",
"version:canary": "./scripts/canary.mjs",
"version:snapshot": "./scripts/snapshot.mjs",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; npx yalc push --replace --sig; cd '../../'; done"
},
"devDependencies": {
"@actions/core": "^1.10.1",
"@arethetypeswrong/cli": "^0.12.1",
"@changesets/cli": "^2.26.2",
"@changesets/get-github-info": "^0.5.2",
"@commitlint/cli": "^17.7.2",
"@commitlint/config-conventional": "^17.7.0",
"@emotion/jest": "^11.11.0",
"@faker-js/faker": "^8.1.0",
"@octokit/rest": "^20.0.2",
"@playwright/test": "^1.39.0",
"@testing-library/dom": "^8.19.0",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@testing-library/user-event": "^14.4.3",
"@types/cross-spawn": "^6.0.3",
"@types/jest": "^29.3.1",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.17",
"citty": "^0.1.4",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cpy-cli": "^5.0.0",
"cross-spawn": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.49.0",
"eslint-config-custom": "*",
"execa": "^5.1.1",
"expect-type": "^0.16.0",
"fastify": "4.12.0",
"fastify-plugin": "^4.5.0",
"fs-extra": "^11.1.1",
"get-port": "^5.1.1",
"globby": "^13.2.2",
"http-server": "^14.1.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"jest-chrome": "^0.8.0",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^14.0.1",
"npm-cli-adduser": "^1.1.4",
"npm-cli-login": "^1.0.0",
"prettier": "^2.8.7",
"publint": "^0.2.4",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "^5.0.5",
"tree-kill": "^1.2.2",
"ts-jest": "^29.0.3",
"tsup": "^7.2.0",
"turbo": "^1.10.16",
"typescript": "^5.2.2",
"verdaccio": "^5.26.3",
"zx": "^7.2.3"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.17.0",
"npm": ">=8.5.0"
},
"overrides": {
"jest": "$jest"
}
}