-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.84 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
{
"name": "fk-vaalimasiina",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "cross-env NODE_ENV=development tsx watch --exclude './vite.config.ts.timestamp-*' ./src/backend/server.ts",
"start": "cross-env NODE_ENV=production tsx ./src/backend/server.ts",
"build": "vite build",
"generate-election": "tsx ./tests/fixtures/generate-election.ts",
"lint": "eslint .",
"type:check": "tsc --noEmit",
"prettier:format": "prettier --write .",
"generate-migrations": "drizzle-kit generate",
"prepare": "simple-git-hooks"
},
"lint-staged": {
"**/*.ts?(x)": "bash -c tsc -p tsconfig.json --noEmit",
"src/**/*.{js,jsx,ts,tsx}": "eslint --fix",
"src/**/*.{js,jsx,ts,tsx,css,scss,md}": "prettier --write --ignore-unknown"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"dependencies": {
"@hello-pangea/dnd": "^17.0.0",
"bootstrap": "^5.3.3",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"csv-parse": "^5.5.6",
"dotenv": "^16.4.5",
"drizzle-orm": "^0.36.3",
"email-templates": "^12.0.1",
"express": "^5.0.1",
"i18next": "^24.0.2",
"i18next-browser-languagedetector": "^8.0.0",
"i18next-http-backend": "^3.0.1",
"jsonwebtoken": "^9.0.2",
"lodash": "^4.17.21",
"nodemailer": "^6.9.16",
"nodemailer-mailgun-transport": "^2.1.5",
"postgres": "^3.4.5",
"react": "^18.3.1",
"react-bootstrap": "^2.10.5",
"react-cookie": "^7.2.2",
"react-dom": "^18.3.1",
"react-i18next": "^15.1.1",
"react-router-dom": "^7.0.1",
"react-toastify": "^10.0.6",
"sass": "^1.81.0",
"seedrandom": "^3.0.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"universal-cookie": "^7.2.2",
"vite-express": "^0.20.0"
},
"devDependencies": {
"@eslint/compat": "^1.2.2",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@playwright/test": "^1.48.2",
"@types/cors": "^2.8.17",
"@types/email-templates": "^10.0.4",
"@types/express": "^5.0.0",
"@types/jsonwebtoken": "^9.0.7",
"@types/lodash": "^4.17.13",
"@types/node": "^22.9.0",
"@types/nodemailer": "^6.4.16",
"@types/nodemailer-mailgun-transport": "^1.4.6",
"@types/react": "^18.3.12",
"@types/react-dom": "^18.3.1",
"@types/seedrandom": "^3.0.8",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitejs/plugin-react": "^4.3.3",
"drizzle-kit": "^0.28.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react-hooks": "^5.0.0",
"eslint-plugin-react-refresh": "^0.4.14",
"eslint-plugin-simple-import-sort": "^12.1.1",
"globals": "^15.12.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"simple-git-hooks": "^2.11.1",
"tslib": "^2.8.1",
"typescript": "^5.5.4",
"vite": "^6.0.1"
}
}