-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.29 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.29 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
{
"name": "apollofy-backend",
"version": "0.0.9-SNAPSHOT.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "ts-node-dev ./src/index.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"format": "prettier --write \"**/*.{js,cjs,mjs,ts,tsx,md,json}\" --ignore-path .gitignore",
"build": "tsc --build",
"clean": "tsc --build --clean",
"lint:format": "prettier --cache --check .",
"check:types": "tsc --noemit"
},
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"bcrypt": "^5.1.0",
"chalk": "^5.2.0",
"cloudinary": "^1.36.4",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"helmet": "^6.1.5",
"jsonwebtoken": "^9.0.0",
"mongoose": "^7.0.5",
"nodemailer": "^6.9.1",
"swagger-ui-express": "^4.6.3",
"winston": "^3.8.2"
},
"devDependencies": {
"@types/express": "^4.17.17",
"@types/node": "^18.16.1",
"@typescript-eslint/eslint-plugin": "^6.9.0",
"@typescript-eslint/parser": "^6.9.0",
"eslint": "^8.52.0",
"morgan": "^1.10.0",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4"
}
}