-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.85 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.85 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "jobify",
"version": "1.0.0",
"description": "Jobify - Mern Course",
"homepage": "https://github.com/thalesraymond/mern-study#readme",
"bugs": {
"url": "https://github.com/thalesraymond/mern-study/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thalesraymond/mern-study.git"
},
"license": "ISC",
"author": "",
"type": "module",
"main": "./dist/server.js",
"scripts": {
"dev": "concurrently --kill-others-on-fail \"npm:dev:server\" \"npm:dev:client\"",
"dev:server": "npx tsx --env-file=.env --watch ./src/server.ts",
"dev:client": "cd client && npm run dev",
"build": "npm run build:server && npm run build:client",
"build:server": "tsc && cp package.json package-lock.json dist/",
"build:client": "cd client && npm run build",
"start": "node ./dist/server.js",
"lint": "eslint src --ext .ts",
"test": "vitest run --coverage",
"test:ci": "vitest run --coverage --reporter=junit --outputFile=test-report.junit.xml",
"ci:setup": "npm run utils:clear-dist && npm i && npm run build && cd client && npm i && npm run build && cd .. && mkdir -p dist/client && cp -r client/dist dist/client/dist",
"utils:clear-dist": "rm -rf dist/ && rm -rf client/dist"
},
"dependencies": {
"@azure/identity": "^4.13.0",
"@azure/storage-blob": "^12.29.1",
"bcryptjs": "^3.0.2",
"cloudinary": "^2.7.0",
"concurrently": "^9.2.1",
"cookie-parser": "^1.4.7",
"datauri": "^4.1.0",
"dayjs": "^1.11.18",
"dotenv": "^17.2.3",
"express": "^5.1.0",
"express-mongo-sanitize": "^2.2.0",
"express-rate-limit": "^8.1.0",
"express-validator": "^7.2.1",
"helmet": "^8.1.0",
"http-status-codes": "^2.3.0",
"jsonwebtoken": "^9.0.2",
"moment": "^2.30.1",
"mongoose": "^8.18.1",
"morgan": "^1.10.1",
"multer": "^2.0.2",
"nanoid": "^5.1.6",
"typescript": "^5.1.6"
},
"devDependencies": {
"@eslint/js": "^9.37.0",
"@types/bcryptjs": "^3.0.0",
"@types/cookie-parser": "^1.4.4",
"@types/express": "^5.0.3",
"@types/express-rate-limit": "^5.1.3",
"@types/jsonwebtoken": "^9.0.2",
"@types/morgan": "^1.9.10",
"@types/multer": "^2.0.0",
"@types/nanoid": "^3.0.0",
"@types/node": "^24.8.1",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"@vitest/coverage-v8": "^3.2.4",
"eslint": "^9.34.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.0.0",
"prettier": "^3.0.0",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.41.0",
"vitest": "^3.2.4"
}
}