-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.1 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
{
"name": "taskometer",
"description": "A web-based meter for tracking your tasks",
"version": "1.0.0",
"type": "module",
"author": "mledan",
"contributors": [
{
"name": "Cassidy Williams",
"email": "hi@cassidoo.co",
"url": "https://cassidoo.co"
}
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"test": "vitest",
"clean": "rm -rf dist",
"setup:stripe": "node scripts/setup-stripe.js"
},
"dependencies": {
"@clerk/backend": "^3.4.4",
"@clerk/clerk-react": "^5.61.6",
"@reach/accordion": "^0.8.0",
"date-fns": "^2.9.0",
"dotenv": "^17.2.3",
"dotenv-vault": "^1.27.0",
"prop-types": "^15.8.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"stripe": "^17.7.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^13.4.0",
"@vitejs/plugin-react": "^2.1.0",
"autoprefixer": "^10.4.21",
"eslint": "^8.26.0",
"eslint-plugin-react": "^7.31.10",
"jsdom": "^20.0.1",
"postcss": "^8.5.6",
"postcss-nested": "^6.0.0",
"postcss-nesting": "^13.0.2",
"vite": "^3.1.8",
"vitest": "^0.24.3"
}
}