forked from curvenote/curvenote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.29 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
{
"private": true,
"workspaces": [
"mystjs/packages/*",
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:web": "turbo run build --filter=@curvespace/default",
"dev": "turbo run dev --parallel",
"clean": "turbo run clean --parallel && find . -name '.turbo' -type d -prune -exec rm -rf '{}' +",
"lint": "turbo run lint",
"lint:format": "turbo run lint:format",
"lint:circular": "madge -c packages/*/src/*",
"test": "turbo run test --filter=blocks --filter=curvenote --filter=nbtx --filter=@curvenote/*",
"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.23.2",
"esbuild": "^0.15.12",
"eslint-config-curvenote": "^0.0.3",
"madge": "^6.1.0",
"npm-run-all": "^4.1.5",
"prettier": "latest",
"rimraf": "^3.0.2",
"turbo": "latest",
"typescript": "latest",
"vitest": "^0.32.4"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]",
"dependencies": {}
}