forked from curvenote/curvenote
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.05 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
{
"name": "@curvenote/monorepo",
"version": "0.0.0",
"private": true,
"workspaces": [
"apps/*",
"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",
"test": "turbo run test",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"version": "changeset version && npm install",
"publish": "npm run clean && npm run build -- --force && changeset publish && git push --follow-tags"
},
"devDependencies": {
"@changesets/cli": "^2.23.2",
"esbuild": "^0.14.53",
"eslint-config-curvenote": "*",
"prettier": "latest",
"turbo": "latest",
"ts-jest": "^28.0.7"
},
"engines": {
"npm": ">=7.0.0",
"node": ">=14.0.0"
},
"packageManager": "[email protected]"
}