-
Notifications
You must be signed in to change notification settings - Fork 382
/
Copy pathpackage.json
45 lines (45 loc) · 1.69 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
{
"name": "solid-start-monorepo",
"description": "Official starter for SolidJS",
"version": "0.2.0",
"author": "Ryan Carniato",
"type": "module",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-start"
},
"private": true,
"scripts": {
"bump": "node scripts/bump.js",
"build": "pnpm run packages:build",
"build:all": "pnpm run packages:build && pnpm run lp:build",
"clean": "pnpm run clean:all",
"clean:all": "pnpm run packages:clean && pnpm run clean:root",
"clean:root": "pnpx rimraf ./node_modules ./.vinxi/ ./.output/",
"lp:dev": "pnpm --filter landing-page dev",
"lp:build": "pnpm --filter landing-page build",
"lp:start": "pnpm --filter landing-page start",
"lp:clean": "pnpx rimraf ./packages/landing-page/node_modules ./packages/landing-page/.vinxi/ ./packages/landing-page/.output/",
"packages:build": "pnpm --filter @solidjs/start build",
"packages:clean": "pnpx rimraf ./packages/*/node_modules/ ./packages/*/dist/",
"install:playwright": "pnpm --filter solid-start-tests run install:playwright",
"clean:test": "pnpx rimraf .tmp",
"test:all": "pnpm run clean:test && cross-env START_ADAPTER=solid-start-node npm run test",
"test": "pnpm run clean:test && pnpm --filter solid-start-tests test --",
"release": "pnpm build && changeset publish",
"show:test-report": "pnpm --filter solid-start-tests show:test-report"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"citty": "^0.1.5",
"cypress": "^14.0.0",
"tinyglobby": "^0.2.2",
"tippy.js": "^6.3.7",
"typescript": "^5.7.0"
},
"dependencies": {},
"engines": {
"pnpm": "^9.0.0"
}
}