-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.09 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
{
"name": "inbox-comics",
"version": "0.1.0",
"scripts": {
"start": "vercel dev",
"build": "next build",
"type-check": "tsc",
"format": "prettier --write \"{components,common-components,lib,pages}/{,**/}*.{js,jsx,ts,tsx}\"",
"lint": "eslint \"{components,common-components,lib,pages}/{,**/}*.{js,jsx,ts,tsx}\" --no-error-on-unmatched-pattern",
"lint-fix": "npm run lint -- --fix",
"test": "echo \"TODO(ecarrel): add front-end tests (#75)\"",
"preview": "vercel",
"deploy": "vercel --prod",
"postinstall": "cd ./api && npm install"
},
"dependencies": {
"@apollo/client": "^3.11.8",
"@dnd-kit/core": "^6.1.0",
"@dnd-kit/sortable": "^8.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1",
"@types/lodash": "^4.17.13",
"@types/react-paginate": "^7.1.4",
"@types/react-truncate": "^2.3.7",
"@vercel/analytics": "^1.3.2",
"classnames": "^2.5.1",
"date-fns": "^3.6.0",
"date-fns-tz": "^3.1.3",
"domhandler": "^5.0.3",
"dotenv": "^16.4.5",
"eslint-config-next": "15.0.2",
"formik": "^2.4.6",
"fuse.js": "^7.0.0",
"graphql": "^16.9.0",
"graphql-tag": "^2.12.6",
"html-react-parser": "^5.1.18",
"isomorphic-unfetch": "^4.0.2",
"lodash": "^4.17.21",
"next": "15.0.2",
"normalize-scss": "^8.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-hot-toast": "^2.4.1",
"react-paginate": "^8.2.0",
"react-spinners": "^0.14.1",
"react-truncate": "^2.4.0",
"reaptcha": "^1.12.1",
"sass": "^1.80.5",
"yup": "^1.4.0"
},
"devDependencies": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"babel-plugin-add-module-exports": "^1.0.4",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"prettier": "^3.3.3",
"typescript": "^5.6.3",
"webpack": "^5.95.0"
},
"engines": {
"node": "20.x"
},
"private": true,
"overrides": {
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1"
}
}