-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "gitscraper",
"version": "1.0.0",
"type": "module",
"main": "index.ts",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"test": "NODE_ENV=test npx mocha --require tsx --timeout 10000 --file src/test/setup.ts 'src/test/**/*.test.ts'",
"test:file": "NODE_ENV=test npx mocha --require tsx --timeout 10000 --file src/test/setup.ts --reporter spec --recursive"
},
"private": true,
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"axios": "^1.7.7",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"express-validator": "^7.2.0",
"mongoose": "^8.6.1",
"openai": "^4.67.1"
},
"devDependencies": {
"@types/axios": "^0.9.36",
"@types/express": "^4.17.21",
"@types/mocha": "^10.0.8",
"@types/node": "^22.7.4",
"@types/react": "^18.3.6",
"@types/react-dom": "^18.3.0",
"@types/supertest": "^6.0.2",
"mocha": "^10.7.3",
"mongodb-memory-server": "^10.0.0",
"supertest": "^7.0.0",
"tsx": "^4.19.1",
"typescript": "^5.6.2"
}
}