bonkers-ui 1.0.0 → 1.0.1
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.
- package/package.json +75 -75
package/package.json
CHANGED
|
@@ -1,77 +1,77 @@
|
|
|
1
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
|
-
|
|
2
|
+
"name": "bonkers-ui",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"scripts": {
|
|
5
|
+
"storybook": "start-storybook -p 6006",
|
|
6
|
+
"build-storybook": "build-storybook",
|
|
7
|
+
"lint:script": "eslint --ext .ts,vue,js --ignore-path .gitignore .",
|
|
8
|
+
"lint:style": "stylelint ./src/**/*.{css,scss,vue}",
|
|
9
|
+
"lint:markup": "vue-tsc --noEmit",
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"deploy": "gh-pages -d storybook-static",
|
|
12
|
+
"typecheck": "tsc --noEmit",
|
|
13
|
+
"i": "yarn install --frozen-lockfile"
|
|
14
|
+
},
|
|
15
|
+
"dependencies": {
|
|
16
|
+
"vue": "^3.2.37"
|
|
17
|
+
},
|
|
18
|
+
"devDependencies": {
|
|
19
|
+
"@storybook/addon-actions": "^6.5.9",
|
|
20
|
+
"@storybook/addon-essentials": "^6.5.9",
|
|
21
|
+
"@storybook/addon-links": "^6.5.9",
|
|
22
|
+
"@storybook/addon-postcss": "^2.0.0",
|
|
23
|
+
"@storybook/builder-vite": "^0.1.36",
|
|
24
|
+
"@storybook/vue3": "^6.5.9",
|
|
25
|
+
"@types/jest": "^28.1.3",
|
|
26
|
+
"@typescript-eslint/eslint-plugin": "^5.29.0",
|
|
27
|
+
"@typescript-eslint/parser": "^5.29.0",
|
|
28
|
+
"@vitejs/plugin-vue": "^2.3.3",
|
|
29
|
+
"@vue/eslint-config-typescript": "^11.0.0",
|
|
30
|
+
"@vue/test-utils": "^2.0.0",
|
|
31
|
+
"@vue/vue3-jest": "^27.0.0",
|
|
32
|
+
"babel-jest": "27",
|
|
33
|
+
"eslint": "^8.18.0",
|
|
34
|
+
"eslint-plugin-vue": "^9.1.1",
|
|
35
|
+
"gh-pages": "^4.0.0",
|
|
36
|
+
"husky": "^8.0.1",
|
|
37
|
+
"jest": "27.3.1",
|
|
38
|
+
"lint-staged": "^13.0.2",
|
|
39
|
+
"postcss": "^8.4.14",
|
|
40
|
+
"postcss-html": "^1.4.1",
|
|
41
|
+
"storybook-tailwind-dark-mode": "^1.0.12",
|
|
42
|
+
"stylelint": "^14.9.1",
|
|
43
|
+
"stylelint-config-recommended": "^8.0.0",
|
|
44
|
+
"stylelint-config-recommended-vue": "^1.4.0",
|
|
45
|
+
"stylelint-config-standard": "^26.0.0",
|
|
46
|
+
"tailwindcss": "^3.1.4",
|
|
47
|
+
"ts-jest": "^27.0.7",
|
|
48
|
+
"typescript": "^4.7.4",
|
|
49
|
+
"vite": "^2.9.12",
|
|
50
|
+
"vue-eslint-parser": "^9.0.3",
|
|
51
|
+
"vue-loader": "^17.0.0",
|
|
52
|
+
"vue-tsc": "^0.38.1"
|
|
53
|
+
},
|
|
54
|
+
"jest": {
|
|
55
|
+
"preset": "ts-jest",
|
|
56
|
+
"moduleFileExtensions": [
|
|
57
|
+
"vue",
|
|
58
|
+
"js",
|
|
59
|
+
"jsx",
|
|
60
|
+
"ts"
|
|
61
|
+
],
|
|
62
|
+
"testEnvironment": "jsdom",
|
|
63
|
+
"moduleNameMapper": {
|
|
64
|
+
"^@/(.*)$": "<rootDir>/src/$1"
|
|
65
|
+
},
|
|
66
|
+
"transform": {
|
|
67
|
+
".*\\.(js)$": "babel-jest",
|
|
68
|
+
"^.+\\.tsx?$": "ts-jest",
|
|
69
|
+
".*\\.(vue)$": "@vue/vue3-jest"
|
|
70
|
+
}
|
|
71
|
+
},
|
|
72
|
+
"lint-staged": {
|
|
73
|
+
"*.{ts,vue}": "eslint --fix && typecheck && test",
|
|
74
|
+
"*.{css,scss,vue,ts}": "stylelint --fix"
|
|
75
|
+
},
|
|
76
|
+
"license": "MIT"
|
|
77
77
|
}
|