forked from discolytics/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 703 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 703 Bytes
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": "javascript",
"private": true,
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "npx changeset",
"publish-packages": "turbo run build && changeset version && git add . && git commit -m \"new release\" && git push && changeset publish && git push --tags"
},
"devDependencies": {
"@repo/eslint-config": "*",
"@repo/typescript-config": "*",
"prettier": "^3.1.1",
"turbo": "latest"
},
"engines": {
"node": ">=18"
},
"packageManager": "npm@10.2.3",
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@changesets/cli": "^2.27.1"
},
"publishConfig": {
"access": "public"
}
}