-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
50 lines (50 loc) · 1.37 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
{
"name": "devmind-server",
"version": "1.0.0",
"description": "Devmind server",
"main": "src/server.ts",
"scripts": {
"build": "tsc",
"clean": "rm -rf ./dist",
"start": "node dist/server.js",
"dev": "ts-node-dev --respawn --pretty --transpile-only src/server.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint src/**/*.ts --fix"
},
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcryptjs": "^2.4.6",
"bcryptjs": "^2.4.3",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.17.1",
"express-fileupload": "^1.4.0",
"express-rate-limit": "^7.1.5",
"helmet": "^7.0.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^7.3.3",
"moralis": "^2.23.2",
"pino": "^8.17.2",
"pino-pretty": "^10.3.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/cors": "^2.8.13",
"@types/express": "^4.17.9",
"@types/express-fileupload": "^1.4.1",
"@types/jsonwebtoken": "^9.0.4",
"@types/node": "^14.14.14",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"eslint": "^8.39.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"prettier": "^2.8.8",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^4.1.3"
}
}