-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.25 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.25 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
{
"name": "memecoin-server",
"version": "1.0.0",
"main": "dist/server.js",
"license": "MIT",
"scripts": {
"start": "npm run build && node dist/server.js",
"dev": "ts-node-dev --respawn -r tsconfig-paths/register server.ts",
"build": "rm -rf dist && tsc && [ -f .env ] && cp .env dist/.env || echo '.env file not found, skipping copy'",
"format:fix": "prettier --write .",
"lint:check": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"axios": "^1.7.9",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"http": "^0.0.1-security",
"mongoose": "^7.2.0",
"node-cron": "^3.0.3",
"tsconfig-paths": "^4.2.0",
"websocket": "^1.0.35",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.19.0",
"@types/axios": "^0.9.36",
"@types/cors": "^2.8.17",
"@types/express": "^4.17.17",
"@types/mongoose": "^5.11.97",
"@types/node": "^20.0.5",
"@types/node-cron": "^3.0.11",
"@types/websocket": "^1.0.10",
"@types/ws": "^8.5.14",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-formatter-friendly": "^7.0.0",
"prettier": "^3.4.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"typescript-eslint": "^8.23.0"
}
}