-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.49 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "@weni/unnnic-system",
"version": "2.18.0",
"type": "commonjs",
"files": [
"dist",
"src",
"public"
],
"main": "./dist/unnnic.umd.js",
"module": "./dist/unnnic.mjs",
"exports": {
".": {
"import": "./dist/unnnic.mjs",
"require": "./dist/unnnic.umd.js"
},
"./dist/style.css": "./dist/style.css",
"./src/assets/scss/unnnic.scss": "./src/assets/scss/unnnic.scss",
"./package.json": "./package.json"
},
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"test": "vitest",
"test:ui": "vitest --ui",
"coverage": "vitest --coverage"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "https://github.com/weni-ai/unnnic.git"
},
"peerDependencies": {
"vue": "^3.4.8"
},
"dependencies": {
"@emoji-mart/data": "^1.1.2",
"@vueuse/components": "^10.4.1",
"emoji-mart": "^5.5.2",
"lodash": "^4.17.21",
"mime": "^4.0.1",
"mitt": "^3.0.1",
"moment": "^2.30.1",
"remark-gfm": "^4.0.0",
"vue": "^3.4.8",
"vue-i18n": "9",
"vue-the-mask": "^0.11.1"
},
"devDependencies": {
"@storybook/addon-actions": "^8.0.10",
"@storybook/addon-essentials": "^8.0.10",
"@storybook/addon-interactions": "^8.0.10",
"@storybook/addon-links": "^8.0.10",
"@storybook/blocks": "^8.0.10",
"@storybook/testing-library": "^0.2.2",
"@storybook/vue3": "^8.0.10",
"@storybook/vue3-vite": "^8.0.10",
"@typescript-eslint/eslint-plugin": "^8.11.0",
"@typescript-eslint/parser": "^8.11.0",
"@vitejs/plugin-vue": "^4.2.3",
"@vitejs/plugin-vue-jsx": "^3.0.1",
"@vitest/coverage-istanbul": "^1.6.0",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/test-utils": "^2.4.6",
"@weni/eslint-config": "^1.0.3",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-storybook": "^0.8.0",
"eslint-plugin-vue": "^9.25.0",
"jsdom": "^24.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.62.1",
"storybook": "^8.0.10",
"typescript": "^5.6.3",
"vite": "4.3.5",
"vitest": "^1.6.0",
"vue-eslint-parser": "^9.4.2"
}
}