-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.28 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.28 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
{
"name": "anyn0te",
"version": "0.1.0",
"private": true,
"scripts": {
"dev": "node scripts/run-next.js dev",
"build": "next build",
"start": "pm2 start ecosystem.config.cjs --only anyn0te-web --env production --update-env",
"start:standalone": "node scripts/run-next.js start",
"lint": "next lint",
"pm2:stop": "pm2 stop anyn0te-web && pm2 delete anyn0te-web",
"permission": "node scripts/managePermissions.mjs",
"migrate:export": "node scripts/export-data.js",
"migrate:import": "node scripts/import-data.js"
},
"dependencies": {
"@types/web-push": "^3.6.4",
"dompurify": "^3.3.0",
"dotenv": "^17.2.3",
"firebase": "^12.4.0",
"firebase-admin": "^13.5.0",
"mysql2": "^3.6.5",
"next": "15.4.4",
"pm2": "^5.4.2",
"postcss": "^8.5.6",
"react": "19.1.0",
"react-dom": "19.1.0",
"swr": "^2.3.6",
"web-push": "^3.6.7"
},
"devDependencies": {
"@eslint/eslintrc": "^3",
"@tailwindcss/postcss": "^4.1.11",
"@types/dompurify": "^3.0.5",
"@types/dotenv": "^6.1.1",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/web-push": "^3.6.4",
"eslint": "^9",
"eslint-config-next": "15.4.4",
"tailwindcss": "^4.1.11",
"typescript": "^5"
}
}