-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.57 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
{
"name": "@caspersocio/vue-masterclass-library",
"version": "1.0.0-alpha.1",
"description": "A Vue component library",
"author": "CasperSocio (https://github.com/CasperSocio)",
"homepage": "https://lib.casperdesign.no/",
"repository": {
"type": "git",
"url": "https://github.com/CasperSocio/vue-masterclass-library.git"
},
"bugs": {
"url": "https://github.com/CasperSocio/vue-masterclass-library/issues"
},
"license": "MIT",
"keywords": [
"component",
"library",
"vue"
],
"scripts": {
"build": "vite build",
"build:storybook": "storybook build -o dist-web",
"deploy": "firebase deploy --only hosting:lib",
"deploy:dev": "firebase deploy --only hosting:dev",
"deploy:test": "firebase deploy --only hosting:test",
"dev": "storybook dev -p 6006",
"lint": "prettier -c .",
"test": "cypress open",
"test:ci": "cypress run --component --config video=false",
"test:open": "cypress open --component",
"test:run": "cypress run --component"
},
"dependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0",
"vue": "^3.2.47",
"vue-inline-svg": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.19.6",
"@storybook/addon-actions": "^7.0.0-rc.0",
"@storybook/addon-essentials": "^7.0.0-rc.0",
"@storybook/addon-interactions": "^7.0.0-rc.0",
"@storybook/addon-links": "^7.0.0-rc.0",
"@storybook/testing-library": "^0.0.14-next.1",
"@storybook/vue3": "^7.0.0-rc.0",
"@storybook/vue3-vite": "^7.0.0-rc.0",
"@typescript-eslint/eslint-plugin": "^5.41.0",
"@typescript-eslint/parser": "^5.41.0",
"@vitejs/plugin-vue": "^4.0.0",
"babel-loader": "^8.2.5",
"chromatic": "^6.11.4",
"cypress": "^10.11.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-cypress": "^2.12.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-storybook": "^0.6.11",
"eslint-plugin-vue": "^9.9.0",
"pinia": "^2.0.32",
"prettier": "^2.8.4",
"sass": "^1.55.0",
"storybook": "^7.0.0-rc.0",
"storybook-dark-mode": "^3.0.0-canary.191.4282.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vue-loader": "^17.0.1",
"vue-tsc": "^1.2.0"
},
"exports": {
".": {
"import": "./dist/vm-lib.js",
"require": "./dist/vm-lib.umd.cjs"
},
"./style.css": "./dist/style.css"
},
"files": [
"dist"
],
"main": "./dist/vm-lib.umd.cjs",
"module": "./dist/vm-lib.js",
"type": "module",
"types": "./dist/types/index.d.ts"
}