-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.93 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.93 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
{
"name": "antisemitismfight",
"private": true,
"version": "0.0.0",
"type": "module",
"scripts": {
"dev": "concurrently \"npm run server\" \"vite\"",
"build": "vite build",
"lint": "eslint .",
"preview": "vite preview",
"server": "node server/index.js",
"start": "node server/index.js",
"db:schema": "node database/run-schema.js",
"db:seed": "node database/seed.js",
"db:seed:timeline": "node database/seed.js timeline",
"db:seed:definitions": "node database/seed.js definitions",
"db:seed:agitators": "node database/seed.js agitators",
"db:seed:conspiracies": "node database/seed.js conspiracies",
"db:seed:talmud": "node database/seed.js talmud",
"db:seed:misconceptions": "node database/seed.js misconceptions",
"db:migrate:contact": "node database/run-migrate-contact-entries.js",
"db:migrate:auth": "node database/run-migrate-user-auth-progress.js",
"db:migrate:contact-users": "node database/run-migrate-contact-user-answers.js",
"db:migrate:contact-archive": "node database/run-migrate-contact-archive.js",
"db:migrate:page-views": "node database/run-migrate-page-views.js"
},
"dependencies": {
"@tmcw/togeojson": "^7.1.2",
"bcryptjs": "^3.0.3",
"dotenv": "^17.3.1",
"express": "^4.21.0",
"jszip": "^3.10.1",
"leaflet": "^1.9.4",
"mysql2": "^3.11.0",
"nodemailer": "^8.0.1",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"react-google-recaptcha-v3": "^1.11.0",
"react-icons": "^5.5.0",
"react-leaflet": "^5.0.0",
"react-router-dom": "^7.13.1",
"shpjs": "^6.2.0"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.1",
"concurrently": "^9.1.0",
"eslint": "^9.39.1",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.24",
"globals": "^16.5.0",
"vite": "^7.3.1"
}
}