-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "my-games",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"build": "npx tsc",
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node ./dist/index.js",
"dev": "nodemon ./src/index.ts",
"format": "prettier --write .",
"lint": "eslint src/**/*.{js,jsx,ts,tsx,json}",
"lint:fix": "eslint --fix ."
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/bcrypt": "^5.0.2",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/mailgen": "^2.0.7",
"@types/mongoose": "^5.11.97",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.10",
"aws-sdk": "^2.1639.0",
"bcryptjs": "^2.4.3",
"console-log-colors": "^0.5.0",
"cors": "^2.8.5",
"dotenv": "^16.4.5",
"express": "^4.19.1",
"express-async-handler": "^1.2.0",
"jsonwebtoken": "^9.0.2",
"mailgen": "^2.0.28",
"mongoose": "^8.2.3",
"multer": "^1.4.5-lts.1",
"nodemailer": "^6.9.13",
"slugify": "^1.6.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/bcryptjs": "^2.4.6",
"@types/jsonwebtoken": "^9.0.6",
"@types/nodemailer": "^6.4.14",
"@types/uuid": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": ">=8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-config-xo": "^0.45.0",
"eslint-config-xo-typescript": "^4.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0 || ^16.0.0 ",
"eslint-plugin-promise": "^6.0.0",
"nodemon": "^3.1.0",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": ">=5.0.0"
}
}