forked from Eshajha19/Algo-Infinity-Verse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.63 KB
/
Copy pathpackage.json
File metadata and controls
71 lines (71 loc) · 1.63 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
{
"name": "algo-infinity-verse",
"version": "1.0.0",
"description": "Interactive DSA learning platform with secure local authentication.",
"main": "server.js",
"type": "module",
"scripts": {
"start": "node server.js",
"dev": "node server.js",
"dev:api": "node dev-server.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"prepare": "husky"
},
"keywords": [
"dsa",
"algorithms",
"authentication",
"resume-analyzer"
],
"license": "MIT",
"dependencies": {
"bullmq": "^5.79.1",
"cors": "^2.8.6",
"csv-parse": "^7.0.0",
"express": "^5.2.1",
"firebase": "^12.15.0",
"firebase-admin": "^12.7.0",
"form-data": "^4.0.6",
"ioredis": "^5.11.1",
"js-yaml": "^4.1.0",
"mammoth": "^1.8.0",
"multer": "^2.2.0",
"nodemailer": "^9.0.1",
"openai": "^4.79.0",
"pdf-parse": "^1.1.1",
"peer": "^1.0.2",
"puppeteer": "^25.1.0",
"socket.io": "^4.8.3",
"uuid": "^14.0.1"
},
"devDependencies": {
"@playwright/test": "^1.61.0",
"acorn": "^8.17.0",
"esbuild": "^0.28.1",
"eslint": "^8.57.1",
"husky": "^9.1.7",
"jest": "^30.4.2",
"lint-staged": "^16.4.0",
"prettier": "^3.9.4"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.test.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/tests/e2e/"
]
},
"lint-staged": {
"*.{js,cjs,mjs}": [
"eslint --fix",
"prettier --write"
],
"*.{json,css,html,md}": [
"prettier --write"
]
}
}