-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 3.16 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
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "ucla-library-website-components",
"type": "module",
"private": false,
"version": "3.54.0",
"main": "./dist/ucla-library-website-components.umd.cjs",
"module": "./dist/ucla-library-website-components.js",
"style": "./dist/style.css",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/ucla-library-website-components.js",
"require": "./dist/ucla-library-website-components.umd.cjs"
},
"./dist/style.css": {
"import": "./dist/style.css",
"require": "./dist/style.css"
}
},
"repository": {
"type": "git",
"url": "https://github.com/UCLALibrary/ucla-library-website-components.git"
},
"author": "Parinita Mulak",
"license": "MIT",
"scripts": {
"dev": "vite",
"serve": "vite --config vite.config.serve.ts",
"build": "vue-tsc --noEmit && VITE_CJS_TRACE=true vite build",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --ignore-path .gitignore",
"lint:fix": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"test:unit": "cypress run --component",
"test:unit:dev": "cypress open --component",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"cypress": "cypress open",
"cypress-run": "cypress run",
"cypress-storybook": "cypress open",
"percy": "percy storybook http://localhost:6006",
"percy-static": "percy storybook ./storybook-static",
"prebuild": "rimraf ./dist",
"prepublishOnly": "pnpm run build"
},
"devDependencies": {
"@antfu/eslint-config": "^0.43.1",
"@mdi/font": "^7.4.47",
"@percy/cli": "^1.30.0",
"@percy/cypress": "^3.1.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@storybook/addon-essentials": "^7.1.1",
"@storybook/addon-interactions": "^7.1.1",
"@storybook/addon-links": "^7.1.1",
"@storybook/blocks": "^7.1.1",
"@storybook/testing-library": "^0.2.0",
"@storybook/vue3": "^7.1.1",
"@storybook/vue3-vite": "^7.1.1",
"@tsconfig/node18": "^18.2.4",
"@types/node": "^18.19.55",
"@vitejs/plugin-vue": "^5.1.4",
"@vue/tsconfig": "^0.5.1",
"cypress": "^13.15.0",
"eslint": "^8.49.0",
"eslint-plugin-cypress": "^2.13.3",
"eslint-plugin-storybook": "^0.6.13",
"eslint-plugin-vue": "^9.17.0",
"prettier": "^2.8.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"sass": "^1.79.5",
"storybook": "^7.4.1",
"typescript": "^5.6.3",
"ucla-library-design-tokens": "^5.29.0",
"video.js": "^8.5.2",
"vite": "^5.4.8",
"vite-svg-loader": "^5.1.0",
"vue": "^3.5.12",
"vue-router": "^4.4.5",
"vue-tsc": "^2.1.6"
},
"dependencies": {
"@vuepic/vue-datepicker": "^8.2.0",
"@vueuse/components": "^11.1.0",
"@vueuse/core": "^11.1.0",
"add-to-calendar-button": "^2.6.18",
"date-fns": "^2.30.0",
"lodash": "^4.17.21",
"pinia": "^2.2.4",
"vue3-carousel": "^0.3.1",
"vuetify": "^3.7.4"
},
"peerDependencies": {
"vue": "^3.5.12",
"vuetify": "^3.7.4"
},
"engines": {
"pnpm": "^9.12.1"
}
}