-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
46 lines (46 loc) · 1.68 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
{
"name": "crossmint-sdk",
"private": true,
"repository": "https://github.com/Crossmint/crossmint-sdk",
"license": "Apache-2.0",
"author": "Paella Labs Inc",
"scripts": {
"build": "pnpm turbo build",
"build:apps": "pnpm turbo --filter \"./apps/**\" build",
"build:libs": "pnpm turbo --filter \"./packages/**\" build",
"build:libs:prod": "cross-env NODE_ENV=production pnpm build:libs",
"change:add": "pnpm changeset add",
"change:publish": "pnpm build:libs:prod && pnpm changeset publish --no-git-tag",
"change:version": "pnpm changeset version && pnpm lint:fix",
"clean:dist": "pnpm rimraf \"**/dist\" --glob",
"clean:next": "pnpm rimraf \"**/.next\" --glob",
"clean:node_modules": "pnpm dlx rimraf \"**/node_modules\" --glob",
"lint": "biome check --diagnostic-level=error --max-diagnostics=200",
"lint:fix": "biome check --write",
"test:vitest": "pnpm turbo test:vitest"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@changesets/cli": "2.27.1",
"@testing-library/jest-dom": "6.1.3",
"@testing-library/react": "14.0.0",
"@types/jest": "29.5.4",
"@types/node": "20.12.7",
"cross-env": "7.0.3",
"jest": "29.6.4",
"rimraf": "6.0.1",
"ts-jest": "29.1.1",
"tsup": "8.1.0",
"turbo": "2.2.3",
"typescript": "5.5.3",
"vitest": "1.0.2",
"vitest-mock-extended": "2.0.0"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20.12.2 <21",
"npm": "please-use-pnpm",
"pnpm": ">=9",
"yarn": "please-use-pnpm"
}
}