-
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.6 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.6 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": "earthwormai-backend",
"description": "EarthwormAI Backend",
"version": "1.0.0",
"private": true,
"author": "Abhishek Jadhav <abhishek.earthwormai@gmail.com>",
"license": "GPL-3.0-only",
"main": "./build/server.js",
"scripts": {
"build": "npm install && tsc",
"start": "tsc && node build/server.js",
"start:prod": "npm run build && pm2 start ecosystem.config.js --env production",
"dev": "npx ts-node-dev --respawn --transpile-only src/server.ts",
"type-check": "tsc --noEmit",
"lint": "eslint --fix \"src/**/*.+(ts|js|jsx|tsx)\"",
"format": "prettier --write \"src/**/*.+(ts|js|jsx|tsx)\"",
"format:ci": "prettier --check \"src/**/*.+(ts|js|jsx|tsx)\"",
"prepare": "husky"
},
"dependencies": {
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"helmet": "^8.0.0",
"mongoose": "^8.9.0"
},
"devDependencies": {
"@commitlint/cli": "^19.6.0",
"@commitlint/config-conventional": "^19.6.0",
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.17.0",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/node": "^22.10.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"globals": "^15.13.0",
"husky": "^9.1.7",
"lint-staged": "^15.2.11",
"prettier": "^3.4.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.18.0"
},
"engines": {
"node": ">=20.18.1",
"npm": ">=10.8.2"
},
"lint-staged": {
"./src/**/*.{ts,js,jsx,tsx}": [
"npm run lint",
"npm run format"
]
}
}