-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.55 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
{
"name": "node",
"version": "1.0.0",
"description": "node for production ",
"main": "src/server.js",
"scripts": {
"dist": "npx tsc",
"dev": "cross-env NODE_ENV=development nodemon src/server.ts",
"start": "cross-env NODE_ENV=production node dist/server.js",
"lint": "eslint ",
"lint:fix": "eslint --fix",
"format:check": "prettier . --check",
"format:fix": "prettier . --fix",
"prepare": "husky"
},
"author": "soumya sekhar mahanti",
"license": "ISC",
"lint-staged": {
"*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"devDependencies": {
"@commitlint/cli": "^19.4.0",
"@commitlint/config-conventional": "^19.2.2",
"@eslint/js": "^9.9.0",
"@types/cors": "^2.8.17",
"@types/eslint__js": "^8.42.3",
"@types/express": "^4.17.21",
"@types/node": "^22.4.1",
"@types/source-map-support": "^0.5.10",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.9",
"nodemon": "^3.1.4",
"prettier": "3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.2.0"
},
"dependencies": {
"colorette": "^2.0.20",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"dotenv-flow": "^4.1.0",
"express": "^4.19.2",
"helmet": "^7.1.0",
"source-map-support": "^0.5.21",
"winston": "^3.14.2"
}
}