-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 2 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
{
"name": "movemove-api",
"version": "0.0.0",
"private": true,
"scripts": {
"swagger": "ts-node ./swagger.ts",
"start": "ts-node ./swagger.ts && ts-node-dev ./bin/www.ts",
"dev": "cross-env NODE_ENV=dev nodemon --watch * -e ts --exec ts-node ./bin/www.ts",
"production": "cross-env NODE_ENV=production nodemon --watch * -e ts --exec ts-node ./bin/www.ts",
"lint": "eslint src/**/*.ts",
"format": "eslint *.ts --fix"
},
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/express-session": "^1.18.0",
"@types/multer": "^1.4.11",
"@types/nodemailer": "^6.4.15",
"@types/swagger-ui-express": "^4.1.6",
"bcrypt": "^5.1.1",
"cookie-parser": "~1.4.4",
"cors": "^2.8.5",
"cross-env": "^7.0.3",
"crypto": "^1.0.1",
"debug": "~2.6.9",
"dotenv": "^16.4.5",
"eslint-config-standard": "^17.1.0",
"express": "~4.16.1",
"express-session": "^1.18.0",
"google-auth-library": "^9.10.0",
"imgur": "^2.4.2",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.3.2",
"morgan": "~1.9.1",
"multer": "^1.4.5-lts.1",
"node-gyp": "^10.1.0",
"nodemailer": "^6.9.13",
"socket.io": "^4.7.5",
"swagger-autogen": "^2.23.7",
"swagger-ui-express": "^5.0.0",
"validator": "^13.11.0"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.7",
"@types/debug": "^4.1.12",
"@types/express": "^4.17.21",
"@types/http-errors": "^2.0.4",
"@types/jsonwebtoken": "^9.0.6",
"@types/morgan": "^1.9.9",
"@types/node": "^20.12.7",
"@types/validator": "^13.11.9",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-prettier": "^5.1.3",
"globals": "^15.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"ts-node-dev": "^2.0.0",
"typescript": "^5.4.5"
}
}