-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 3.2 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 3.2 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
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
{
"name": "sentiment",
"description": "Funding guideline 'Platform Privacy - IT Security Protects Privacy and Supports Democracy' as part of the German government's research framework program on IT security 'Digital. Secure. Sovereign'.",
"version": "1.1.0",
"private": false,
"author": "Domenik Toefflinger <hello@dmnktoe.de>",
"license": "MIT",
"keywords": [
"sentiment",
"privacy",
"security",
"democracy",
"funding",
"research"
],
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"start": "next start",
"lint": "eslint src",
"lint:fix": "eslint src --fix && pnpm format",
"lint:strict": "eslint --max-warnings=0 src",
"typecheck": "tsc --noEmit",
"test:e2e": "playwright test --config=src/config/playwright.config.ts",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"test": "jest",
"format": "prettier -w .",
"format:check": "prettier -c .",
"format:ci": "prettier --list-different .",
"postinstall": "husky",
"postbuild": "next-sitemap --config src/config/next-sitemap.config.js",
"clean": "rm -rf .next/ coverage/",
"clean:nm": "pnpm clean && rm -rf node_modules/"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"eslint \"src/**/*.+(ts|js|tsx)\" --fix",
"prettier . --write"
],
"**/*.{json,css,scss,md,webmanifest}": [
"prettier -w"
]
},
"dependencies": {
"@hookform/resolvers": "5.2.2",
"@react-email/components": "1.0.12",
"@strapi/blocks-react-renderer": "1.0.2",
"altcha": "3.0.4",
"altcha-lib": "2.0.3",
"clsx": "2.1.1",
"lucide-react": "1.14.0",
"next": "16.2.4",
"next-sitemap": "4.2.3",
"next-themes": "0.4.6",
"qs": "6.15.1",
"react": "19.2.5",
"react-dom": "19.2.5",
"react-hook-form": "7.75.0",
"tailwind-merge": "3.5.0",
"zod": "4.4.2"
},
"devDependencies": {
"@commitlint/cli": "20.5.3",
"@commitlint/config-conventional": "20.5.3",
"@eslint/eslintrc": "3.3.5",
"@eslint/js": "9.39.4",
"@ianvs/prettier-plugin-sort-imports": "4.7.1",
"@playwright/test": "1.59.1",
"@tailwindcss/postcss": "^4.2.4",
"@testing-library/jest-dom": "^6.0.0",
"@testing-library/react": "^16.0.0",
"@types/jest": "30.0.0",
"@types/node": "24.12.2",
"@types/qs": "6.15.0",
"@types/react": "19.2.14",
"@typescript-eslint/eslint-plugin": "8.59.1",
"@typescript-eslint/parser": "8.59.1",
"eslint": "9.39.4",
"eslint-config-next": "16.2.4",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-react": "7.37.5",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-simple-import-sort": "^13.0.0",
"eslint-plugin-unused-imports": "^4.3.0",
"globals": "17.6.0",
"husky": "9.1.7",
"jest": "30.3.0",
"jest-environment-jsdom": "30.3.0",
"lint-staged": "16.4.0",
"postcss": "8.5.13",
"prettier": "3.8.3",
"prettier-plugin-tailwindcss": "0.8.0",
"tailwindcss": "4.2.4",
"typescript": "6.0.3"
},
"pnpm": {
"overrides": {
"@types/react": "19.2.14",
"@types/react-dom": "npm:types-react-dom@19.0.0",
"typescript-eslint": "8.59.1"
}
}
}