forked from xvrh/localize-with-spreadsheet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.35 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
{
"private": true,
"name": "@lokse/workspace",
"packageManager": "[email protected]",
"workspaces": [
"example",
"docs/web",
"packages/*"
],
"engines": {
"node": ">=20"
},
"scripts": {
"postinstall": "turbo telemetry disable",
"build": "turbo run build",
"clean": "turbo run clean --parallel",
"lint": "eslint packages/*/src/ --ext .ts --config ./.eslintrc",
"format": "prettier --write --config prettier.config.mjs \"packages/*/(src|test)/**/*.(ts|tsx)\"",
"test": "jest",
"test:watch": "jest --watchAll",
"release:prepare": "yarn build && yarn changeset",
"release:apply": "yarn changeset version && yarn changeset tag && yarn install",
"release:publish": "yarn changeset publish"
},
"devDependencies": {
"@changesets/cli": "2.27.9",
"@types/glob": "^8.0.1",
"@types/jest": "29.5.14",
"chai": "^4.2.0",
"eslint": "^7.32.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.3.0",
"glob": "^8.1.0",
"husky": "^4.3.0",
"jest": "29.7.0",
"lint-staged": "^10.5.1",
"prettier": "3.3.3",
"ts-jest": "29.2.5",
"turbo": "^2.3.0",
"typescript": "5.6.3"
}
}