-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
115 lines (115 loc) · 3.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "resilience-web",
"version": "0.1.0",
"type": "module",
"license": "MIT",
"scripts": {
"dev": "NODE_OPTIONS='--inspect' next dev --turbopack",
"trigger": "npx trigger.dev@latest dev",
"build": "next build",
"build:analyze": "ANALYZE=true npm run build",
"start": "next start -H 0.0.0.0 -p ${PORT:-3000}",
"db": "prisma studio --port 7777",
"db:up": "docker compose --project-name=resilience-web up -d",
"db:down": "docker compose --project-name=resilience-web down",
"postinstall": "prisma generate",
"stylelint:dry": "stylelint .",
"stylelint:fix": "stylelint . --fix",
"eslint:dry": "eslint .",
"eslint:fix": "eslint . --fix",
"format:dry": "prettier . --check",
"format:fix": "prettier . --write",
"types:dry": "tsc --noEmit",
"quality:dry": "npm run stylelint:dry && npm run eslint:dry && npm run format:dry && npm run types:dry",
"quality:fix": "npm run stylelint:fix && npm run eslint:fix && npm run format:fix",
"test:e2e": "playwright test"
},
"prisma": {
"seed": "node --loader ts-node/esm prisma/seed.mts"
},
"dependencies": {
"@auth/prisma-adapter": "2.7.2",
"@aws-sdk/client-s3": "3.662.0",
"@chakra-ui/react": "2.10.4",
"@emotion/react": "11.14.0",
"@emotion/styled": "11.14.0",
"@fontsource/poppins": "5.1.1",
"@next/bundle-analyzer": "15.1.5",
"@prisma/client": "5.22.0",
"@react-email/components": "0.0.32",
"@react-email/render": "1.0.4",
"@sendgrid/client": "8.1.4",
"@sendgrid/mail": "8.1.4",
"@sentry/nextjs": "8.48.0",
"@tanstack/react-query": "5.62.7",
"@tinymce/tinymce-react": "5.1.1",
"@trigger.dev/sdk": "3.3.1",
"chroma-js": "3.1.2",
"diff": "7.0.0",
"dompurify": "3.2.3",
"driver.js": "1.3.1",
"formik": "2.4.6",
"framer-motion": "11.16.1",
"graphql": "16.9.0",
"graphql-request": "7.1.2",
"isomorphic-unfetch": "4.0.2",
"leaflet": "1.9.4",
"leaflet-geosearch": "4.0.0",
"lodash-es": "4.17.21",
"next": "15.1.5",
"next-auth": "5.0.0-beta.25",
"next-query-params": "5.1.0",
"next-recaptcha-v3": "1.5.2",
"nodemailer": "6.9.16",
"posthog-js": "1.205.1",
"react": "19.0.0",
"react-colorful": "5.6.1",
"react-dom": "19.0.0",
"react-icons": "5.4.0",
"react-leaflet": "5.0.0",
"react-select": "5.9.0",
"remark": "15.0.1",
"remark-html": "16.0.1",
"sass": "1.82.0",
"sharp": "0.33.5",
"tinymce": "7.6.0",
"use-debounce": "10.0.4",
"use-local-storage": "3.0.0",
"use-query-params": "2.2.1",
"usehooks-ts": "3.1.0",
"vis-network-react": "DinerIsmail/vis-network-react"
},
"devDependencies": {
"@playwright/test": "1.47.2",
"@tanstack/eslint-plugin-query": "5.62.1",
"@tanstack/react-query-devtools": "5.62.7",
"@trigger.dev/build": "3.3.1",
"@types/diff": "6.0.0",
"@types/leaflet": "1.9.16",
"@types/node": "22.10.5",
"@types/nodemailer": "6.4.17",
"@types/react": "19.0.4",
"@typescript-eslint/eslint-plugin": "8.18.1",
"@typescript-eslint/parser": "8.18.1",
"eslint": "9.17.0",
"eslint-config-next": "15.1.5",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-jsx-a11y": "6.10.2",
"eslint-plugin-promise": "7.2.1",
"eslint-plugin-react": "7.37.3",
"eslint-plugin-react-hooks": "5.1.0",
"globals": "15.14.0",
"prettier": "3.4.2",
"prisma": "5.22.0",
"react-email": "3.0.6",
"stylelint": "16.11.0",
"stylelint-config-recommended": "14.0.1",
"stylelint-config-standard-scss": "14.0.0",
"ts-node": "10.9.2",
"typescript": "5.7.2",
"typescript-eslint": "8.18.1"
},
"overrides": {
"prettier": "3.4.2"
}
}