-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "pg-mail",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "yarn codegen && next build",
"start": "next start",
"lint": "next lint",
"codegen": "yarn kysely-codegen --camel-case --out-file ./src/clients/db-types.d.ts",
"migrate": "yarn dbmate up && yarn codegen",
"scrape": "tsx ./src/utils/scrape-mail.ts",
"archives": "pgsql-lists-offline/pgsql-lists-offline.sh"
},
"dependencies": {
"@types/pg": "^8.10.9",
"@uidotdev/usehooks": "^2.4.1",
"axios": "^1.6.2",
"classnames": "^2.3.2",
"isomorphic-dompurify": "^2.14.0",
"jotai": "^2.9.1",
"kysely": "^0.26.3",
"lodash": "^4.17.21",
"mailparser": "^3.7.1",
"minimist": "^1.2.8",
"next": "14.0.4",
"pg": "^8.11.3",
"pg-promise": "^11.9.1",
"react": "^18",
"react-dom": "^18",
"react-icons": "^4.12.0"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/mailparser": "^3.4.4",
"@types/minimist": "^1.2.5",
"@types/node": "^20",
"@types/react": "^18",
"@types/react-dom": "^18",
"@types/sanitize-html": "^2.9.5",
"autoprefixer": "^10.0.1",
"dbmate": "^2.8.0",
"dotenv": "^16.4.5",
"eslint": "^8",
"eslint-config-next": "14.0.4",
"kysely-codegen": "^0.11.0",
"postcss": "^8",
"tailwindcss": "^3.3.0",
"tsx": "^4.16.2",
"typescript": "^5.6.2"
}
}