forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.54 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
69
70
{
"name": "solid-primitives",
"private": true,
"description": "A collection of high-quality, community contributed building blocks.",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-primitives.git"
},
"author": "David Di Biase <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "pnpm -dir site run dev",
"format": "prettier -w {site,packages,scripts,template}/**/*.{js,ts,json,css,tsx,jsx,md,html} --ignore-path .gitignore",
"lint:packages": "eslint --ignore-path .gitignore --max-warnings 0 packages/*/src/**/*",
"lint:tests": "eslint --ignore-path .gitignore packages/*/test/** --quiet --rule \"no-only-tests/no-only-tests: error\"",
"lint": "concurrently pnpm:lint:*",
"test:client": "cross-env CI=true vitest -c ./configs/vitest.config.ts",
"test:ssr": "pnpm run test:client --mode ssr",
"test": "pnpm run test:client && pnpm run test:ssr",
"build": "cross-env CI=true turbo run build --filter='./packages/*'",
"new-package": "jiti ./scripts/new-package.ts",
"update-readme": "jiti ./scripts/update-readme.ts",
"measure": "jiti ./scripts/measure.ts",
"version": "changeset version && pnpm i --no-frozen-lockfile && git add .",
"release": "pnpm build && changeset publish"
},
"devDependencies": {
"@changesets/cli": "^2.26.1",
"@mdx-js/mdx": "^2.3.0",
"@solidjs/testing-library": "^0.7.1",
"@types/fs-extra": "^11.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.2.5",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"concurrently": "^8.0.1",
"cross-env": "^7.0.3",
"esbuild": "^0.17.19",
"eslint": "^8.41.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-solid": "^0.12.1",
"fs-extra": "^11.1.1",
"gzip-size": "^7.0.0",
"jiti": "^1.18.2",
"jsdom": "^22.0.0",
"json-to-markdown-table": "^1.0.0",
"prettier": "^2.8.8",
"prettier-plugin-tailwindcss": "^0.3.0",
"rehype-autolink-headings": "^6.1.1",
"rehype-highlight": "^6.0.0",
"rehype-slug": "^5.1.0",
"remark-gfm": "^3.0.1",
"solid-devtools": "^0.27.0",
"solid-js": "1.7.6",
"solid-start": "^0.2.26",
"tsup": "^6.7.0",
"tsup-preset-solid": "^0.1.8",
"turbo": "^1.9.9",
"type-fest": "^3.11.0",
"typescript": "~5.0.4",
"vite": "^4.3.9",
"vite-plugin-solid": "^2.7.0",
"vitest": "^0.31.1"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18.0.0"
}
}