forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 2.21 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
{
"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": {
"@commitlint/cli": "^16.0.2",
"@commitlint/config-conventional": "^16.0.0",
"@commitlint/config-lerna-scopes": "^16.0.0",
"@types/react": "^18.0.25",
"@types/react-dom": "^18.0.8",
"conventional-changelog-conventionalcommits": "^4.6.3",
"eslint": "^8.24.0",
"eslint-config-custom": "*",
"fastify": "4.12.0",
"fastify-plugin": "^4.5.0",
"husky": "^8.0.1",
"jest": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"lerna": "^4.0.0",
"prettier": "^2.6.0",
"pretty-quick": "^3.1.3",
"react": "18.2.0",
"react-dom": "18.2.0",
"rimraf": "^3.0.2",
"ts-jest": "^29.0.3",
"tsup": "^6.5.0",
"turbo": "^1.6.3",
"typescript": "4.9.4"
},
"scripts": {
"dev": "turbo dev --filter=@clerk/* --filter=!@clerk/expo",
"dev:playground": "echo 'Not ready for use yet' && exit 1 && turbo dev --filter=@playground/*",
"build": "turbo build --concurrency=${TURBO_CONCURRENCY:-2}",
"test": "turbo test --concurrency=${TURBO_CONCURRENCY:-2}",
"clean": "turbo clean",
"lint": "turbo lint",
"lint-fix": "eslint . --ext .ts",
"bump": "lerna version",
"bump:next": "lerna version --conventional-prerelease --preid next --no-changelog",
"bump:staging": "lerna version --conventional-prerelease --preid staging --no-changelog",
"graduate": "lerna version --conventional-graduate",
"release:staging": "lerna publish from-package --dist-tag staging",
"release": "lerna publish from-package",
"prerelease": "npx rimraf packages/*/dist && turbo run build test --concurrency=${TURBO_CONCURRENCY:-2} --force",
"release:next": "lerna publish from-package --dist-tag next",
"version": "./scripts/version-info.sh",
"nuke": "rm -r node_modules; for d in packages/*/node_modules; do echo $d; rm -r $d; done; packages/*/dist;",
"yalc:all": "for d in packages/*/; do echo $d; cd $d; yalc push --replace; cd '../../'; done",
"prepare": "husky install"
}
}