-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 844 Bytes
/
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
{
"name": "@coord/curves",
"private": false,
"version": "0.0.0",
"license": "MIT",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"lint": "turbo run lint",
"test": "turbo run test",
"test:watch": "turbo run test:watch",
"deploy": "turbo run deploy",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build lint test && changeset version && changeset publish",
"clean": "rm -rf ./node_modules && turbo clean"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@turbo/gen": "^1.10.1",
"next": "^13.4.4",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"turbo": "^1.10.1",
"vitest": "^0.31.4"
},
"packageManager": "[email protected]"
}