-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
112 lines (112 loc) · 3.58 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
{
"name": "project-compass",
"type": "module",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "npm run with-gcp-metadata next start",
"with-gcp-metadata": "npx tsx src/backend/scripts/run-with-gcp-metadata.ts",
"type:check": "tsc --noEmit",
"type-css": "npx tcm src",
"type-css:watch": "npx tcm src --watch",
"type-css:check": "npx tcm src --listDifferent",
"test": "next build --no-lint && ava",
"db:migrate": "npx tsx src/backend/scripts/migrate-database.ts",
"db:reset": "npx tsx src/backend/scripts/reset-database.ts",
"db:seed": "npx tsx src/backend/scripts/seed-database.ts",
"prepare": "husky",
"postinstall": "next build --no-lint && npm run type-css",
"format": "prettier --write --ignore-unknown .",
"format:check": "prettier --check --ignore-unknown .",
"format:version": "prettier --version",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"all:check": "npm run type:check && npm run type-css:check && npm run lint && npm run format:check && npm run test",
"storybook": "storybook dev -p 6006",
"build:storybook": "storybook build"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.701.0",
"@aws-sdk/s3-request-presigner": "^3.701.0",
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@fontsource/roboto": "^5.1.0",
"@mui/icons-material": "^6.1.9",
"@mui/material": "^6.1.9",
"@mui/x-date-pickers": "^7.23.0",
"@tanstack/react-query": "^4.36.1",
"@trpc/client": "^10.45.2",
"@trpc/react-query": "^10.45.2",
"@trpc/server": "^10.45.2",
"axios": "^1.7.8",
"date-fns": "^2.30.0",
"dotenv": "16.4.5",
"execa": "^9.5.1",
"gcp-metadata": "^6.1.0",
"kysely": "^0.27.4",
"ms": "^2.1.3",
"next": "^14.2.18",
"next-auth": "4.24.10",
"nodemailer": "^6.9.16",
"pg": "^8.13.1",
"pg-connection-string": "^2.7.0",
"postgres-migrations": "^5.3.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-hot-toast": "^2.4.1",
"react-timer-hook": "^3.0.8",
"react-use": "^17.5.1",
"superjson": "^2.2.1",
"tsx": "^4.19.2",
"winston": "^3.17.0",
"zapatos": "^6.4.4",
"zod": "^3.23.8"
},
"devDependencies": {
"@ava/get-port": "^2.0.0",
"@chromatic-com/storybook": "^3.2.2",
"@storybook/addon-essentials": "^8.4.5",
"@storybook/addon-interactions": "^8.4.5",
"@storybook/addon-links": "^8.4.5",
"@storybook/addon-onboarding": "^8.4.5",
"@storybook/blocks": "^8.4.5",
"@storybook/nextjs": "^8.4.5",
"@storybook/react": "^8.4.5",
"@storybook/test": "^8.4.5",
"@tomfreudenberg/next-auth-mock": "^0.5.6",
"@types/ms": "^0.7.34",
"@types/node": "^22.10.1 ",
"@types/nodemailer": "^6.4.17",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"@typescript-eslint/parser": "^8.16.0",
"ava": "^6.2.0",
"ava-postgres": "^7.3.1",
"ava-typescript-worker": "^2.0.0",
"eslint": "^8.57.1",
"eslint-config-next": "^14.2.18",
"eslint-plugin-storybook": "^0.11.1",
"foreman": "^3.0.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"nodemailer-mock": "^2.0.6",
"prettier": "^3.4.1",
"quibble": "^0.9.2",
"storybook": "^8.4.5",
"testcontainers": "^10.15.0",
"type-fest": "^3.5.4",
"typed-css-modules": "^0.9.1",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=22.11.0",
"npm": ">=10.9.0"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"prettier --write --ignore-unknown",
"eslint --fix"
]
}
}