This repository has been archived by the owner on Jan 11, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.37 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@musy-app/root",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"build": "turbo run build",
"build:packages": "turbo run p:build",
"build:docs": "turbo run build --filter=docs...",
"build:examples": "turbo run build --filter='./examples/*'",
"build:examples:next": "turbo run build --filter=next-typescript...",
"dev": "turbo run p:watch dev --parallel --no-cache",
"dev:packages": "turbo run p:watch",
"dev:docs": "turbo run dev --filter=@musy-app/musy-docs",
"dev:examples": "turbo run dev --filter=./examples/*",
"dev:examples:next": "turbo run dev --filter=@musy-app/groovy-next-typescript",
"p:watch": "preconstruct watch",
"p:dev": "preconstruct dev",
"p:build": "preconstruct build",
"p:validate": "preconstruct validate",
"postinstall": "manypkg check && pnpm p:dev",
"prepare": "husky install && pnpm p:validate && pnpm build:packages",
"version": "changeset version",
"release": "changeset publish",
"release:alpha": "pnpm changeset publish --tag alpha",
"lint": "eslint . --ext .ts,.tsx",
"lint:fix": "eslint . --ext .ts,.tsx --fix",
"size": "size-limit",
"size:why": "size-limit --why",
"format:staged": "pretty-quick --staged"
},
"dependencies": {
"@babel/core": "^7.21.5",
"@babel/plugin-proposal-decorators": "^7.21.0",
"@babel/plugin-transform-runtime": "^7.21.4",
"@babel/preset-env": "^7.21.5",
"@babel/preset-react": "^7.18.6",
"@babel/preset-typescript": "^7.21.5",
"@changesets/cli": "^2.26.1",
"@manypkg/cli": "^0.19.2",
"@preconstruct/cli": "^2.5.0",
"@size-limit/preset-big-lib": "^8.2.4",
"@types/node": "^18.16.3",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"babel-plugin-styled-components": "^2.1.1",
"eslint": "^8.39.0",
"eslint-config-next": "^13.3.4",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-simple-import-sort": "^10.0.0",
"husky": "^8.0.3",
"path-browserify": "^1.0.1",
"prettier": "^2.8.8",
"pretty-quick": "^3.1.3",
"size-limit": "^8.2.4",
"turbo": "^1.9.3"
},
"preconstruct": {
"packages": [
"packages/*"
]
},
"packageManager": "pnpm@7.26.0",
"repository": "https://github.com/musy-app/musy-app"
}