-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (114 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
114 lines (114 loc) · 3.58 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
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
104
105
106
107
108
109
110
111
112
113
114
{
"name": "@carletonuniversity/rds",
"version": "0.29.3",
"private": false,
"description": "Raven Design System is Carleton University's design system",
"author": "Web Services",
"license": "Proprietary",
"homepage": "https://github.com/cuweb/rds#readme",
"repository": {
"type": "git",
"url": "https://github.com/cuweb/rds"
},
"bugs": {
"url": "https://github.com/cuweb/rds/issues"
},
"main": "dist/rds.umd.js",
"module": "dist/rds.es.js",
"types": "dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/rds.es.js",
"require": "./dist/rds.umd.js"
},
"./dist/style.css": "./dist/style.css",
"./dist/vanilla-js/cu-motion.js": "./dist/vanilla-js/cu-motion.js"
},
"files": [
"dist"
],
"scripts": {
"lint": "eslint . --ignore-pattern '.storybook/**'",
"storybook": "storybook dev -p 6006",
"build": "tsc && npm run lint && npm run prettier && vite build && npm run size",
"build:storybook": "storybook build",
"create-lists": "node ./generateIconList.mjs && node ./generateBgImgList.mjs && node ./generateVideoJsonFiles.mjs",
"prettier": "prettier --write .",
"size": "size-limit",
"clean": "rm -rf node_modules ; rm package-lock.json ; npm install ; npm run build",
"test": "concurrently \"npm run storybook --quiet --ci -p 6006\" \"npx cypress open\"",
"test:ci": "concurrently \"npm run storybook --quiet --ci -p 6006\" \"npx cypress run --headless\"",
"prepare": "husky"
},
"dependencies": {
"@react-google-maps/api": "2.20.8",
"@tailwindcss/aspect-ratio": "0.4.2",
"@tailwindcss/container-queries": "0.1.1",
"@tailwindcss/forms": "0.5.11",
"@tailwindcss/typography": "0.5.20",
"date-fns": "4.4.0",
"dompurify": "3.4.14",
"formik": "2.4.9",
"globals": "17.11.0",
"rds-tailwind-theme": "0.9.2",
"react": "18.3.1",
"react-date-picker": "12.1.0",
"react-datepicker": "9.1.0",
"react-dom": "18.3.1",
"react-player": "3.4.0",
"react-select": "5.10.2",
"yup": "1.7.1"
},
"peerDependencies": {
"date-fns": "4.4.0",
"formik": "2.4.9",
"react": "18.3.1",
"react-date-picker": "12.1.0",
"react-datepicker": "9.1.0",
"react-dom": "18.3.1",
"react-player": "3.4.0",
"yup": "1.7.1"
},
"devDependencies": {
"@cypress/react": "9.0.2",
"@size-limit/preset-big-lib": "13.0.3",
"@storybook/addon-a11y": "10.5.10",
"@storybook/addon-docs": "10.5.10",
"@storybook/addon-links": "10.5.10",
"@storybook/addon-onboarding": "10.5.10",
"@storybook/react": "10.5.10",
"@storybook/react-vite": "10.5.10",
"@types/google.maps": "^3.65.5",
"@types/react": "18.3.28",
"@types/react-dom": "18.3.7",
"@typescript-eslint/eslint-plugin": "8.67.0",
"@typescript-eslint/parser": "8.67.0",
"@vitejs/plugin-react": "5.1.4",
"autoprefixer": "10.5.4",
"concurrently": "10.0.5",
"cypress": "15.21.0",
"eslint": "9.39.5",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-cypress": "6.4.4",
"eslint-plugin-prettier": "5.5.6",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.0.1",
"eslint-plugin-react-refresh": "0.5.4",
"eslint-plugin-storybook": "10.5.10",
"husky": "9.1.7",
"postcss": "8.5.26",
"postcss-nesting": "14.0.1",
"prettier": "3.9.6",
"prettier-plugin-tailwindcss": "0.8.1",
"size-limit": "13.0.3",
"tailwindcss": "3.4.19",
"typescript": "6.0.3",
"vite": "6.4.1",
"vite-plugin-dts": "5.0.3"
},
"directories": {
"lib": "lib"
},
"type": "module"
}