This repository has been archived by the owner on Dec 14, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.52 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
{
"name": "project-zero",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint",
"test": "jest",
"test:watch": "jest --watchAll",
"coverage": "jest --coverage",
"postinstall": "husky install",
"precommit": "yarn lint && yarn test",
"format": "prettier --write '*/**/*.{js,css,md,ts,tsx}'"
},
"dependencies": {
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"@mui/material": "^5.14.18",
"@preact/signals-react": "^1.3.7",
"@ramonak/react-progress-bar": "^5.1.1",
"@tanstack/react-query": "^5.13.4",
"appwrite": "^13.0.0",
"chart.js": "^4.4.1",
"classnames": "^2.3.2",
"contentlayer": "^0.3.4",
"date-fns": "^2.30.0",
"dotenv": "^16.3.1",
"gray-matter": "^4.0.3",
"jotai": "^2.6.0",
"luxon": "^3.4.3",
"next": "13.5.4",
"next-contentlayer": "^0.3.4",
"react": "^18",
"react-chartjs-2": "^5.2.0",
"react-dom": "^18",
"react-feather": "^2.0.10",
"react-google-recaptcha-v3": "^1.10.1",
"react-hook-form": "^7.48.1",
"remark": "^15.0.1",
"remark-html": "^16.0.1"
},
"devDependencies": {
"@tanstack/eslint-plugin-query": "^5.12.1",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.5.1",
"@types/jest": "^29.5.5",
"@types/luxon": "^3.3.3",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/react-router-dom": "^5.3.3",
"@types/use-sync-external-store": "^0.0.6",
"@types/uuid": "^9.0.7",
"@typescript-eslint/eslint-plugin": "^6.13.1",
"@typescript-eslint/parser": "^6.13.1",
"autoprefixer": "^10.4.16",
"encoding": "^0.1.13",
"eslint": "^8.52.0",
"eslint-config-next": "13.5.4",
"eslint-plugin-jest-dom": "^5.1.0",
"eslint-plugin-testing-library": "^6.1.0",
"husky": "^8.0.0",
"jest": "^29.7.0",
"jest-environment-jsdom": "^29.7.0",
"lint-staged": ">=10",
"postcss": "^8.4.31",
"prettier": "^3.1.0",
"react-router-dom": "^6.17.0",
"tailwindcss": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2",
"vercel": "^32.5.6"
},
"main": "index.js",
"repository": "[email protected]:suhay/project-zero.git",
"author": "Matt Suhay <[email protected]>",
"license": "MIT",
"packageManager": "[email protected]",
"lint-staged": {
"*.{js,ts,tsx}": "eslint --cache --fix",
"*.{js,css,md,ts,tsx}": "yarn format"
}
}