-
Notifications
You must be signed in to change notification settings - Fork 68
/
package.json
40 lines (40 loc) · 1.19 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
{
"name": "mystmd",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean --parallel && find . -name '.turbo' -type d -prune -exec rimraf '{}' +",
"link": "turbo run link",
"lint": "turbo run lint",
"lint:format": "turbo run lint:format",
"lint:circular": "madge -c packages/*/src/*",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version": "changeset version && npm install",
"publish": "npm run clean && npm run build -- --force && changeset publish && git push --follow-tags",
"publish:ci": "npm run build && changeset publish && git push --follow-tags"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@types/node": "^20.2.5",
"esbuild": "^0.17.19",
"eslint-config-curvenote": "^0.0.4",
"madge": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "latest",
"rimraf": "^5.0.1",
"turbo": "latest",
"typescript": "^5.6.2",
"vitest": "^2.1.2"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}