-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
44 lines (44 loc) · 1.56 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
{
"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": "prettier --write ."
},
"contributors": [
{
"name": "Thomas Beer"
},
{
"name": "Rahul Batra"
}
],
"workspaces": [
"./packages/*"
],
"devDependencies": {
"@changesets/cli": "2.27.9",
"nodemon": "^3.1.7",
"prettier": "^3.3.3",
"turbo": "^2.2.3",
"vitest": "^2.1.5"
},
"packageManager": "pnpm@9.6.0"
}