forked from solidjs-community/solid-primitives
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 2.02 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 2.02 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "solid-primitives",
"private": true,
"description": "A collection of high-quality, community contributed building blocks.",
"main": "index.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/solidjs-community/solid-primitives.git"
},
"author": "David Di Biase <dave.dibiase@gmail.com>",
"license": "MIT",
"scripts": {
"preinstall": "npx only-allow pnpm",
"format": "prettier -w packages/**/*.{js,ts,json,css,tsx,jsx,md,html}",
"lint": "eslint --max-warnings 0 packages/*/src/** && eslint --max-warnings 0 packages/*/test/** --rule \"@typescript-eslint/no-unused-vars: off\"",
"build": "cross-env CI=true turbo run build",
"test": "cross-env CI=true vitest -c ./configs/vitest.config.ts",
"test:ssr": "pnpm run test --mode ssr",
"pages": "turbo run page && jiti ./scripts/collectPages.ts",
"new-package": "jiti ./scripts/new-package.ts",
"update-readme": "jiti ./scripts/update-readme.ts",
"update-deps": "taze -w -r && pnpm i",
"changeset": "changeset",
"release": "pnpm build && changeset publish",
"version-packages": "changeset version && pnpm i",
"ci:version": "changeset version && pnpm i --no-frozen-lockfile && git add ."
},
"devDependencies": {
"@changesets/cli": "^2.25.2",
"@solidjs/testing-library": "^0.5.1",
"@types/fs-extra": "^9.0.13",
"@types/node": "^18.11.10",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"cross-env": "^7.0.3",
"eslint": "^8.28.0",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-solid": "^0.9.1",
"fs-extra": "^11.1.0",
"jiti": "^1.16.0",
"jsdom": "^20.0.3",
"json-to-markdown-table": "^1.0.0",
"prettier": "^2.8.0",
"solid-js": "^1.6.0",
"taze": "^0.8.4",
"tsup": "^6.5.0",
"turbo": "^1.6.3",
"type-fest": "^3.3.0",
"typescript": "^4.9.3",
"unocss": "^0.47.5",
"vite": "^3.2.4",
"vite-plugin-solid": "^2.4.0",
"vitest": "^0.25.3"
},
"packageManager": "pnpm@7.18.0"
}