-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
40 lines (40 loc) · 1.16 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": "rino",
"version": "0.0.0",
"private": true,
"packageManager": "[email protected]",
"scripts": {
"dev": "rino-cli dev",
"build": "rino-cli build",
"test": "rino-cli test",
"lint": "eslint .",
"fix": "eslint . --fix",
"postinstall": "./scripts/post-install.sh",
"test:coverage": "./scripts/test-coverage.sh",
"clean": "rino-cli clean",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"ci:publish": "rino-cli build common editor && pnpm publish -r",
"typecheck": "tsc -b tsconfig.json"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@ocavue/eslint-config-react": "^0.4.9",
"@rino.app/cli": "workspace:*",
"@types/node": "^18.16.16",
"eslint": "^8.41.0",
"prettier": "^2.8.8",
"turbo": "^1.9.9",
"typescript": "^5.0.4"
},
"renovate": {
"extends": [
"github>ocavue/config-renovate"
],
"dependencyDashboard": true
},
"pnpm": {
"overrides": {},
"peerDependencyRules": {},
"patchedDependencies": {}
}
}