forked from moishinetzer/PBandJ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.09 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
71
{
"name": "pbandj",
"license": "MIT",
"version": "0.3.2",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"bin": {
"pbandj": "dist/cli.cjs"
},
"scripts": {
"dev": "vite",
"build": "run-s build:*",
"build:lib": "tsup lib/index.ts --dts",
"build:cli": "tsup scripts/cli.ts --dts --format cjs",
"test": "vitest run",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"format": "prettier --write .",
"check": "tsc && npm run css-check",
"release": "npm run check && npm run build && changeset publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"css-check": "ts-node --esm ./scripts/css-check.ts"
},
"dependencies": {
"npm-run-all": "^4.1.5",
"react": "^18.2.0",
"react-dom": "^18.2.0"
},
"devDependencies": {
"@changesets/cli": "^2.26.0",
"@frontside/eslint-config": "^3.1.0",
"@storybook/addon-essentials": "^7.0.0-beta.33",
"@storybook/addon-interactions": "^7.0.0-beta.33",
"@storybook/addon-links": "^7.0.0-beta.33",
"@storybook/blocks": "^7.0.0-beta.33",
"@storybook/react": "^7.0.0-beta.33",
"@storybook/react-vite": "^7.0.0-beta.33",
"@storybook/testing-library": "^0.0.13",
"@types/inquirer": "^9.0.3",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/recursive-readdir": "^2.2.1",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@vitejs/plugin-react": "^3.0.1",
"chalk": "^5.2.0",
"esbuild-css-modules-plugin": "^2.7.1",
"eslint": "^8.33.0",
"fetch-lite": "^1.1.0",
"inquirer": "^9.1.4",
"kolorist": "^1.6.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"prop-types": "^15.8.1",
"recursive-readdir": "^2.2.3",
"rollup-plugin-postcss": "^4.0.2",
"storybook": "^7.0.0-beta.33",
"ts-node": "^10.9.1",
"tsup": "^6.5.0",
"type-fest": "^3.5.4",
"typescript": "^4.9.3",
"vite": "^4.0.0",
"vite-plugin-css-injected-by-js": "^2.4.0",
"vite-plugin-dts": "^1.7.1",
"vitest": "^0.28.4"
}
}