forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 3.08 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
{
"name": "@clerk/javascript",
"workspaces": {
"packages": [
"packages/*"
]
},
"license": "MIT",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"engines": {
"node": ">=16.8.0",
"npm": ">=8.5.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@changesets/get-github-info": "^0.5.2",
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@emotion/jest": "^11.11.0",
"@faker-js/faker": "^8.0.2",
"@playwright/test": "^1.35.1",
"@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.2",
"@types/jest": "^29.3.1",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cross-spawn": "^7.0.3",
"dotenv": "^16.3.1",
"eslint": "^8.38.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.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "^5.0.0",
"tree-kill": "^1.2.2",
"ts-jest": "^29.0.3",
"tsup": "^6.7.0",
"turbo": "^1.10.6",
"typescript": "4.9.4",
"zx": "^7.2.1"
},
"scripts": {
"dev": "turbo dev --filter=@clerk/* --filter=!@clerk/expo",
"build": "turbo build --concurrency=${TURBO_CONCURRENCY:-2}",
"test": "turbo test --concurrency=${TURBO_CONCURRENCY:-2}",
"test:ci": "turbo test --concurrency=${TURBO_CONCURRENCY:-2}",
"test:integration": "npx playwright test --config integration/playwright.config.ts",
"test:deployments": "npx playwright test --config integration/playwright.deployments.config.ts",
"clean": "turbo clean",
"lint": "turbo lint",
"bundlewatch": "turbo bundlewatch",
"format": "npx prettier --write .",
"format:check": "npx prettier --cache --check .",
"nuke": "./scripts/nuke.sh",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; yalc push --replace; cd '../../'; done",
"prepare": "husky install",
"changeset": "npx changeset",
"changeset:empty": "npm run changeset -- --empty",
"version": "npx changeset version && ./scripts/version-info.sh",
"version:snapshot": "./scripts/snapshot.mjs",
"version:staging": "./scripts/staging.mjs",
"release": "TURBO_CONCURRENCY=4 npm run build -- --force && npm run test && npx changeset publish && git push --follow-tags",
"release:snapshot": "TURBO_CONCURRENCY=4 npm run build && npx changeset publish --tag snapshot --no-git-tag",
"release:staging": "TURBO_CONCURRENCY=4 npm run build && npx changeset publish --tag staging --no-git-tag",
"update:lockfile": "npm run nuke && npm install -D --arch=x64 --platform=linux turbo && npm install -D --arch=arm64 --platform=darwin turbo"
}
}