-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "tailor-my-resume-server",
"version": "1.0.0",
"description": "tailor-my-resume",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js",
"debug": "nodemon --inspect server.js",
"test": "jest --detectOpenHandles --forceExit --coverage --silent",
"test-with-logs": "jest --detectOpenHandles --forceExit",
"sentry:sourcemaps": "sentry-cli sourcemaps inject --org ashutosh-p9 --project node-express ./client/build && sentry-cli sourcemaps upload --org ashutosh-p9 --project node-express ./client/build"
},
"repository": {
"type": "git",
"url": "git+/~https://github.com/aashutoshPanda/tailor-my-resume.git"
},
"keywords": [],
"author": "Ashutosh Panda",
"license": "MIT",
"bugs": {
"url": "/~https://github.com/aashutoshPanda/tailor-my-resume/issues"
},
"homepage": "/~https://github.com/aashutoshPanda/tailor-my-resume#readme",
"dependencies": {
"@babel/core": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@sentry/cli": "^2.27.0",
"@sentry/node": "^7.99.0",
"@sentry/profiling-node": "^1.3.5",
"babel-jest": "^29.7.0",
"bcrypt": "^5.1.1",
"body-parser": "^1.20.2",
"cloudinary": "^1.41.3",
"cors": "^2.8.5",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"express-rate-limit": "^7.1.5",
"jsonwebtoken": "^9.0.2",
"mongoose": "^8.0.4",
"openai": "^4.26.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^2.8.8",
"supertest": "^6.3.4"
},
"prettier": {
"printWidth": 120
},
"type": "module",
"jest": {
"roots": [
"tests"
],
"testTimeout": 5000,
"testEnvironment": "node",
"collectCoverage": true,
"coverageReporters": [
"html"
],
"coveragePathIgnorePatterns": [
"<rootDir>/src/utils/cloudinary.js",
"<rootDir>/src/services/improveWithAI.js"
]
}
}