-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 1.82 KB
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
{
"name": "job-conciergerie",
"version": "2.350",
"private": true,
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"prepare": "husky",
"version:bump": "bun scripts/increment-version.js",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"db:reset": "bash scripts/reset-dev-db.sh"
},
"dependencies": {
"@alerix/m3-loading-indicator": "latest",
"@serwist/next": "latest",
"@supabase/ssr": "latest",
"@supabase/supabase-js": "latest",
"@tabler/icons-react": "latest",
"@tailwindcss/postcss": "latest",
"next": "latest",
"nodemailer": "latest",
"postgres": "latest",
"react": "latest",
"react-dom": "latest",
"react-markdown": "latest",
"recharts": "latest",
"serwist": "latest",
"tailwind-merge": "latest"
},
"devDependencies": {
"@eslint/js": "latest",
"@testing-library/jest-dom": "latest",
"@testing-library/react": "latest",
"@testing-library/user-event": "latest",
"@types/node": "latest",
"@types/nodemailer": "latest",
"@types/react": "latest",
"@types/react-dom": "latest",
"@vitest/coverage-v8": "latest",
"dotenv": "latest",
"eslint": "latest",
"eslint-config-next": "latest",
"eslint-plugin-react-hooks": "latest",
"globals": "latest",
"happy-dom": "latest",
"husky": "latest",
"jsdom": "latest",
"postcss": "latest",
"tailwindcss": "latest",
"typescript": "latest",
"typescript-eslint": "latest",
"vitest": "latest"
},
"prettier": {
"useTabs": false,
"tabWidth": 2,
"singleQuote": true,
"arrowParens": "avoid",
"printWidth": 120,
"trailingComma": "all",
"semi": true
},
"lint-staged": {
"*.ts*": "eslint"
}
}