-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathpackage.json
30 lines (30 loc) · 900 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
30
{
"name": "@frigadehq/remote-storage",
"version": "0.0.1",
"license": "MIT",
"description": "remoteStorage is an open source library and server with the same API as localStorage that allows you to store data in a centralized storage.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"build": "turbo build",
"test": "turbo test",
"dev": "turbo dev --no-cache --continue",
"lint": "turbo lint",
"clean": "turbo clean && rm -rf node_modules",
"format": "prettier --write \"**/*.{ts,tsx,md}\"",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.22.0",
"eslint": "^7.32.0",
"prettier": "^2.5.1",
"rimraf": "^5.0.0",
"turbo": "^1.10.14"
},
"author": "Frigade Inc.",
"packageManager": "[email protected]"
}