-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.19 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "pholog",
"version": "1.0.0",
"description": "Document your life",
"main": "index.js",
"scripts": {
"start": "node dist/index.js",
"develop": "nodemon src/index.ts",
"build": "tsc -p .",
"clean": "rimraf dist",
"prepare": "husky install",
"format": "prettier --write src/**/*.{js,jsx,ts,tsx}",
"lint": "eslint ./src/*.*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nirnejak/pholog.git"
},
"keywords": [
"Photo",
"Document",
"Life"
],
"author": "Jitendra Nirnejak",
"license": "MIT",
"bugs": {
"url": "https://github.com/nirnejak/pholog/issues"
},
"homepage": "https://github.com/nirnejak/pholog#readme",
"dependencies": {
"@sentry/node": "^6.12.0",
"admin-bro": "^4.0.1",
"admin-bro-expressjs": "^2.1.1",
"admin-bro-mongoose": "^0.5.2",
"axios": "^0.28.0",
"bcryptjs": "^2.4.3",
"bull": "^3.29.1",
"chalk": "^4.1.2",
"cookie-parser": "^1.4.5",
"cors": "^2.8.5",
"dotenv": "^10.0.0",
"express": "^4.21.0",
"express-formidable": "^1.2.0",
"express-session": "^1.17.2",
"ioredis": "^4.27.9",
"jsonwebtoken": "^9.0.0",
"moment": "^2.29.4",
"mongoose": "^6.12.0",
"nodemailer": "^6.9.9",
"rimraf": "^3.0.2",
"socker.io": "0.0.0-alpha-beta",
"swagger-jsdoc": "^6.1.0",
"swagger-ui-express": "^4.6.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.2",
"@types/cors": "^2.8.12",
"@types/express": "^4.17.13",
"@types/express-session": "^1.17.4",
"@types/node": "^16.7.10",
"@types/swagger-jsdoc": "^6.0.1",
"@types/swagger-ui-express": "^4.1.3",
"@typescript-eslint/eslint-plugin": "^4.30.0",
"@typescript-eslint/parser": "^4.30.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"husky": "^7.0.2",
"lint-staged": "^11.1.2",
"nodemon": "^2.0.20",
"prettier": "^2.3.2",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}