-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.53 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.53 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
{
"name": "tangle-backend",
"version": "1.0.0",
"main": "index.js",
"repository": "https://github.com/Treposting/tangle_server-v2",
"author": "0nahid <nahidhassanbulbul@gmail.com>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev --respawn --transpile-only ./src/index.ts",
"start": "node ./dist/index.js",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prettier": "prettier --write \"src/**/*.ts\"",
"format": "yarn prettier && yarn lint:fix",
"pre": "git pull && yarn && yarn dev",
"build": "rm -rf dist && yarn tsc",
"tsc": "tsc"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"yarn prettier"
]
},
"dependencies": {
"@types/body-parser": "^1.19.5",
"@types/cors": "^2.8.13",
"@types/ejs": "^3.1.4",
"@types/express": "^4.17.17",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"ejs": "^3.1.9",
"eslint": "^8.41.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-unused-imports": "^2.0.0",
"express": "^4.18.2",
"http-status": "^1.7.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"mongoose": "^7.2.1",
"pino": "^8.14.1",
"pino-pretty": "^10.0.0",
"prettier": "^2.8.8",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"winston": "^3.9.0",
"winston-daily-rotate-file": "^4.7.1"
},
"devDependencies": {
"ts-node": "^10.9.1"
}
}