@mbao01/next 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +17 -16
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mbao01/next",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "author": "Ayomide Bakare",
@@ -30,10 +30,22 @@
30
30
  "sideEffects": [
31
31
  "*.css"
32
32
  ],
33
+ "scripts": {
34
+ "dev": "storybook dev -p 6006",
35
+ "build": "next build",
36
+ "build-storybook": "storybook build",
37
+ "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
38
+ "preview": "next dev",
39
+ "start": "next start",
40
+ "test": "vitest run",
41
+ "test:ui": "vitest --ui",
42
+ "test:watch": "vitest",
43
+ "test:coverage": "vitest run --coverage"
44
+ },
33
45
  "dependencies": {
46
+ "@mbao01/common": "^0.0.2",
34
47
  "clsx": "^2.1.0",
35
- "daisyui": "^4.6.2",
36
- "@mbao01/common": "^0.0.1"
48
+ "daisyui": "^4.6.2"
37
49
  },
38
50
  "devDependencies": {
39
51
  "@heroicons/react": "^2.1.1",
@@ -86,16 +98,5 @@
86
98
  "react-dom": "^18.2.0",
87
99
  "typescript": "^5.2.2"
88
100
  },
89
- "scripts": {
90
- "dev": "storybook dev -p 6006",
91
- "build": "next build",
92
- "build-storybook": "storybook build",
93
- "lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
94
- "preview": "next dev",
95
- "start": "next start",
96
- "test": "vitest run",
97
- "test:ui": "vitest --ui",
98
- "test:watch": "vitest",
99
- "test:coverage": "vitest run --coverage"
100
- }
101
- }
101
+ "gitHead": "00988bf0b2318917bab272a8fb5920e451f67edf"
102
+ }