-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.56 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.56 KB
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
{
"name": "solid-cli",
"private": true,
"version": "0.0.1",
"description": "A CLI for making the SolidJS development experience easier, faster, and less error prone.",
"license": "MIT",
"homepage": "https://solid-cli.netlify.app",
"repository": {
"type": "git",
"url": "https://github.com/solidjs-community/solid-cli"
},
"scripts": {
"test": "vitest",
"test:all": "turbo run test",
"build": "turbo run build",
"release": "pnpm build && changeset publish",
"watch:all": "nodemon --no-stdin -q --watch packages/core/src -e ts --exec 'turbo run build --scope=core' --watch packages/reactivity/src -e ts --exec 'turbo run build --scope=reactivity' --watch packages/ui/src -e ts --exec 'turbo run build --scope=ui' --watch packages/utils/src -e ts --exec 'turbo run build --scope=utils'",
"watch:core": "nodemon --watch packages/core/src -e ts --exec 'turbo run build --scope=core'",
"watch:reactivity": "nodemon --watch packages/reactivity/src -e ts --exec 'turbo run build --scope=reactivity'",
"watch:ui": "nodemon --watch packages/ui/src -e ts --exec 'turbo run build --scope=ui'",
"watch:utils": "nodemon --watch packages/utils/src -e ts --exec 'turbo run build --scope=utils'",
"start": "cd packages/core && pnpm start",
"format": "biome format ./ --write",
"lint": "biome lint ."
},
"contributors": [
{
"name": "Thomas Beer"
},
{
"name": "Rahul Batra"
}
],
"workspaces": ["./packages/*"],
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"@changesets/cli": "2.27.3",
"nodemon": "^3.1.0",
"turbo": "^1.13.3",
"vitest": "^1.6.0"
}
}