-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
83 lines (83 loc) · 2.79 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
{
"name": "paige",
"private": true,
"version": "1.0.0",
"type": "module",
"scripts": {
"dev:chrome": "cross-env BUILD_TARGET=chrome NODE_ENV=dev vite build --watch",
"dev:web": "cross-env BUILD_TARGET=web NODE_ENV=dev vite",
"build:chrome": "cross-env BUILD_TARGET=chrome npm run build",
"build:web": "cross-env BUILD_TARGET=web npm run build",
"build": "tsc && vite build",
"preview": "vite preview",
"prepare": "husky install",
"lint": "eslint . --ext .ts,.tsx,.js,.jsx",
"generate-pwa-assets": "pwa-assets-generator"
},
"dependencies": {
"@headlessui/react": "^1.7.15",
"@internationalized/date": "^3.2.0",
"@radix-ui/react-accessible-icon": "^1.0.2",
"@radix-ui/react-checkbox": "^1.0.3",
"@radix-ui/react-dialog": "^1.0.3",
"@radix-ui/react-dropdown-menu": "^2.0.4",
"@radix-ui/react-hover-card": "^1.0.5",
"@radix-ui/react-popover": "^1.0.5",
"@radix-ui/react-scroll-area": "^1.0.3",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.2",
"@radix-ui/react-tabs": "^1.0.3",
"@react-aria/calendar": "^3.2.0",
"@react-aria/datepicker": "^3.4.0",
"@react-aria/i18n": "^3.7.1",
"@stitches/react": "^1.2.8",
"@tanstack/query-sync-storage-persister": "^5.0.0",
"@tanstack/react-query": "^5.0.0",
"@tanstack/react-query-persist-client": "^5.0.0",
"axios": "^1.4.0",
"blurhash": "^2.0.5",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"embla-carousel-autoplay": "8.0.0-rc14",
"embla-carousel-react": "8.0.0-rc14",
"framer-motion": "^10.12.11",
"react": "^18.2.0",
"react-blurhash": "^0.3.0",
"react-dom": "^18.2.0",
"react-error-boundary": "^4.0.8",
"react-merge-refs": "^2.0.2",
"react-query-kit": "^2.0.0",
"react-stately": "^3.22.0",
"react-use-measure": "^2.1.1",
"stitches-mixins": "^1.0.0",
"unsplash-js": "^7.0.18",
"zustand": "^4.3.8"
},
"devDependencies": {
"@commitlint/cli": "^18.0.0",
"@commitlint/config-conventional": "^18.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.5",
"@total-typescript/ts-reset": "^0.5.0",
"@types/chrome": "^0.0.253",
"@types/node": "^20.0.0",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vite-pwa/assets-generator": "^0.2.1",
"@vitejs/plugin-react": "^4.0.0",
"cross-env": "^7.0.3",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"husky": "^8.0.3",
"lint-staged": "^15.0.0",
"prettier": "3.1.0",
"semantic-release": "^22.0.10",
"semantic-release-chrome": "^3.2.0",
"typescript": "^5.0.4",
"vite": "^5.0.0",
"vite-plugin-pwa": "^0.17.0",
"workbox-window": "^7.0.0"
}
}