-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
31 lines (31 loc) · 984 Bytes
/
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
{
"name": "clerk-solidjs",
"private": true,
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"clean-install": "rimraf pnpm-lock.yaml --glob **/node_modules && pnpm install",
"clean": "turbo clean",
"dev": "turbo dev",
"format:check": "turbo format:check",
"format": "turbo format",
"lint:fix": "turbo lint:fix",
"lint": "turbo lint",
"prepare": "husky",
"prerelease": "turbo clean && turbo type-check && turbo format:check && turbo lint && turbo test",
"release": "turbo clean && turbo build && changeset publish",
"test:watch": "turbo test:watch",
"test": "turbo test",
"type-check": "turbo type-check",
"version": "changeset version && pnpm install --no-frozen-lockfile"
},
"author": "Spirit-Led Software",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.11",
"husky": "^9.1.7",
"rimraf": "^6.0.1",
"turbo": "^2.3.3"
},
"packageManager": "[email protected]"
}