-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
104 lines (104 loc) · 3.36 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
104
{
"name": "ubie-vitals-website",
"type": "module",
"version": "0.0.1",
"scripts": {
"dev": "npm run script:extract-icon-names && astro dev",
"start": "npm run script:extract-icon-names && astro dev",
"build": "npm run script:extract-icon-names && astro build",
"preview": "astro preview",
"astro": "astro",
"check": "astro check && tsc --noEmit",
"lint": "run-p lint:*",
"lint:js": "eslint src/**/*.{astro,ts,tsx}",
"lint:css": "stylelint src/**/*.{astro,module.css,css}",
"fix": "run-p fix:*",
"fix:js": "eslint --fix src/**/*.{astro,ts,tsx}",
"fix:css": "stylelint --fix src/**/*.{astro,module.css,css}",
"prettier:astro": "prettier --write src/**/*.astro",
"script:extract-icon-names": "node ./scripts/extractIconNames.js",
"test": "vitest",
"generate:page:component": "scaffdog generate pageComponent",
"generate:page:example": "scaffdog generate example"
},
"dependencies": {
"@astrojs/check": "^0.9.2",
"@astrojs/mdx": "^3.1.3",
"@astrojs/prism": "^3.1.0",
"@astrojs/react": "^3.6.2",
"@astrojs/renderer-react": "^0.5.0",
"@nanostores/react": "^0.7.2",
"@types/react": "^18.2.79",
"@types/react-dom": "^18.2.25",
"@types/react-syntax-highlighter": "^15.5.11",
"@ubie/design-tokens": "^0.2.0",
"@ubie/ubie-icons": "^0.8.2",
"@ubie/ubie-ui": "^0.0.38",
"@unocss/reset": "^0.59.4",
"astro": "^4.14.2",
"astro-icon": "^1.1.0",
"clsx": "^2.1.1",
"color-blend": "^4.0.0",
"color-rgba": "^3.0.0",
"focus-trap-react": "^10.2.3",
"nanostores": "^0.10.3",
"react": "18.2.0",
"react-docgen": "^7.0.3",
"react-docgen-typescript": "^2.2.2",
"react-dom": "^18.2.0",
"react-syntax-highlighter": "^15.5.0",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"sharp": "^0.33.4",
"shikiji": "^0.10.2",
"shikiji-transformers": "^0.10.2",
"typescript": "^5.4.5",
"uuid": "^9.0.1"
},
"devDependencies": {
"@markuplint/astro-parser": "^4.5.1",
"@shikijs/transformers": "^1.3.0",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"@ubie/prettier-config": "^0.1.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-astro": "^0.34.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsx-a11y": "^6.8.0",
"eslint-plugin-react": "^7.34.1",
"eslint-plugin-unused-imports": "^3.1.0",
"markuplint": "^4.6.1",
"npm-run-all": "^4.1.5",
"postcss-html": "^1.6.0",
"prettier": "^3.2.5",
"prettier-plugin-astro": "^0.13.0",
"scaffdog": "^3.0.0",
"stylelint": "^16.4.0",
"stylelint-config-css-modules": "^4.4.0",
"stylelint-config-html": "^1.1.0",
"stylelint-config-recess-order": "^5.0.1",
"stylelint-config-standard": "^36.0.0",
"stylelint-prettier": "^5.0.0",
"vitest": "^1.5.1"
},
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/ubie-oss/ubie-vitals-website.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ubie-oss/ubie-vitals-website/issues"
},
"homepage": "https://github.com/ubie-oss/ubie-vitals-website#readme",
"description": "",
"overrides": {
"vite": {
"rollup": "npm:@rollup/wasm-node"
},
"react": "18.2.0"
}
}