-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 2.29 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 2.29 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "@binsights/common",
"version": "0.2.10",
"author": "Binsights, Inc.",
"description": "Code sharing for Binsights frontend projects.",
"license": "UNLICENSED",
"scripts": {
"prebuild": "rm -rf dist",
"build": "rollup -c rollup.config.mjs",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "next lint",
"clean": "rm -rf node_modules/ && rm -rf dist/ && rm -rf .next/ && rm -rf .rollup.cache/ && rm -rf storybook-static/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rezzi-smartcan/binsights.js.git"
},
"dependencies": {
"lodash": "^4.17.21",
"lucide-react": "^0.373.0",
"moment": "^2.30.1",
"react-aria-components": "^1.1.1",
"tailwind-merge": "^2.3.0",
"tailwind-variants": "^0.2.1"
},
"peerDependencies": {
"next": "14.1.4",
"react": "^18",
"react-dom": "^18"
},
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**",
"README.md"
],
"devDependencies": {
"@chromatic-com/storybook": "^1.3.1",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.6",
"@storybook/addon-essentials": "^8.0.6",
"@storybook/addon-interactions": "^8.0.6",
"@storybook/addon-links": "^8.0.6",
"@storybook/addon-onboarding": "^8.0.6",
"@storybook/blocks": "^8.0.6",
"@storybook/nextjs": "^8.0.6",
"@storybook/react": "^8.0.6",
"@storybook/test": "^8.0.6",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"autoprefixer": "^10.0.1",
"eslint": "^8",
"eslint-config-next": "14.1.4",
"eslint-plugin-storybook": "^0.8.0",
"next": "14.1.4",
"postcss": "^8.4.38",
"react": "^18",
"react-dom": "^18",
"rollup": "^4.14.0",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-peer-deps-external": "^2.2.4",
"rollup-plugin-preserve-directives": "^0.4.0",
"rollup-plugin-typescript-paths": "^1.5.0",
"storybook": "^8.0.6",
"tailwindcss": "^3.3.0",
"tailwindcss-react-aria-components": "^1.1.1",
"typescript": "^5",
"zod": "^3.22.4"
}
}