-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.71 KB
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
{
"name": "uids",
"type": "module",
"version": "4.0.0",
"license": "MIT",
"description": "The UIowa Design System is specific to the University of Iowa.",
"keywords": [
"uiowa",
"design"
],
"homepage": "https://uids.brand.uiowa.edu",
"main": "./dist/uids.umd.js",
"module": "./dist/uids.es.js",
"style": "",
"exports": {
"import": "./dist/uids.es.js",
"require": "./dist/uids.umd.js"
},
"scripts": {
"dev": "sass --watch src/scss:dist",
"build": "sass src/scss:dist",
"production": "storybook build -o www && sass src/scss:www/dist/css",
"preview": "vite preview --port 5050",
"test:unit": "vitest --environment jsdom",
"test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'",
"test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'",
"typecheck": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"dependencies": {
"vue": "^3.5.34"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.16.1",
"@storybook/addon-docs": "10.4.1",
"@storybook/addon-links": "^10.4.1",
"@storybook/vue3-vite": "^10.4.1",
"@vitejs/plugin-vue": "^6.0.7",
"@whitespace/storybook-addon-html": "9.0.0",
"jsdom": "^29.1.1",
"postcss": "^8",
"prettier": "^3.8.3",
"react": "^19.2.6",
"react-dom": "^19.2.6",
"react-syntax-highlighter": "^16.1.1",
"sass": "^1.100.0",
"storybook": "^10.4.1",
"vite": "^8.0.14",
"webpack": "^5.107.2"
},
"packageManager": "yarn@3.7.0"
}