forked from Dev-Motion/paige
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.55 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
{
"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": {
"@h6s/calendar": "1.1.0-alpha.2",
"@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": "^4.33.0",
"@tanstack/react-query": "^4.29.25",
"@tanstack/react-query-persist-client": "^4.33.0",
"axios": "^1.4.0",
"blurhash": "^2.0.5",
"cmdk": "^0.2.0",
"date-fns": "^2.30.0",
"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": "^1.4.8",
"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": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"@total-typescript/ts-reset": "^0.5.0",
"@types/chrome": "^0.0.246",
"@types/node": "^18.16.9",
"@types/react": "^18.2.6",
"@types/react-dom": "^18.2.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@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": "^14.0.0",
"prettier": "3.0.3",
"typescript": "^5.0.4",
"vite": "^4.3.6",
"vite-plugin-pwa": "^0.16.0",
"workbox-window": "^7.0.0"
}
}