-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.8 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.8 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "backend",
"version": "1.0.0",
"main": "server.js",
"scripts": {
"build": "tsc",
"dev": "nodemon server",
"start": "node ./dist/server.js",
"pretty:check": "prettier --check . --config ./.prettierrc",
"pretty:fix": "prettier --write . --config ./.prettierrc && echo Run `npm run lint:check` to check linting.",
"lint:check": "eslint . --no-fix && echo Run `npm run lint:fix` to fix linting.",
"lint:fix": "eslint . --fix && echo Run `npm run pretty:check` to check formatting.",
"seed": "tsx ./src/scripts/seed.ts",
"seed:clean": "npm run seed -- --destroy"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"bcryptjs": "^2.4.3",
"cloudinary": "^2.3.1",
"cookie-parser": "^1.4.6",
"cors": "^2.8.5",
"datauri": "^4.1.0",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"helmet": "^7.1.0",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.5.1",
"multer": "^1.4.5-lts.1",
"nodemailer": "^7.0.11",
"socket.io": "^4.7.5",
"uuid": "^10.0.0",
"validator": "^13.12.0",
"vitest": "^2.1.9"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/bcryptjs": "^2.4.6",
"@types/cookie-parser": "^1.4.7",
"@types/cors": "^2.8.17",
"@types/dotenv": "^8.2.0",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.6",
"@types/multer": "^1.4.11",
"@types/node": "^20.14.11",
"@types/nodemailer": "^6.4.15",
"@types/uuid": "^10.0.0",
"@types/validator": "^13.12.0",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"supertest": "^7.0.0",
"tsx": "^4.19.2",
"typescript": "^5.5.3",
"typescript-eslint": "^8.16.0"
}
}