-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 871 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
32
33
34
{
"name": "helpers",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"changeset": "changeset",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"clean": "turbo clean",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"lint": "turbo lint",
"test": "jest --config jest.config.cjs",
"workspace:clean-build": "turbo clean && turbo build"
},
"dependencies": {
"@changesets/cli": "2.27.1"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@repo/eslint-config": "workspace:*",
"@repo/typescript-config": "workspace:*",
"@types/jest": "29.5.11",
"jest": "29.7.0",
"prettier": "^3.1.1",
"ts-jest": "29.1.1",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "[email protected]"
}