This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.64 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
54
55
56
57
58
59
{
"name": "jsad-backend",
"version": "1.0.0",
"description": "Backend for jsartciles.dev",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "env-cmd -f .env.production node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "jest --watch",
"start:dev": "NODE_ENV=development env-cmd -f .env.development nodemon"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsarticles-dev/jsad-backend.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jsarticles-dev/jsad-backend/issues"
},
"homepage": "https://github.com/jsarticles-dev/jsad-backend#readme",
"devDependencies": {
"@jest-mock/express": "^2.0.2",
"@jest/globals": "^29.5.0",
"@types/bcrypt": "^5.0.0",
"@types/express-session": "^1.17.7",
"@types/jsonwebtoken": "^9.0.2",
"@types/node": "^20.2.5",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^5.59.9",
"@typescript-eslint/parser": "^5.59.9",
"eslint": "^8.42.0",
"jest": "^29.5.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"typescript": "^5.0.0"
},
"dependencies": {
"@sendgrid/mail": "^7.7.0",
"@types/cors": "^2.8.13",
"@types/express": "^4.17.17",
"bcrypt": "^5.1.0",
"connect-mongo": "^5.0.0",
"cors": "^2.8.5",
"cron": "^2.4.1",
"dotenv": "^16.1.4",
"env-cmd": "^10.1.0",
"express": "^4.18.2",
"express-session": "^1.17.3",
"helmet": "^7.0.0",
"jsonwebtoken": "^9.0.1",
"mongodb-memory-server": "^8.13.0",
"mongoose": "^7.2.2",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"winston": "^3.9.0"
}
}