-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"name": "barstool-fs-api",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "pnpm exec nodemon src/index.ts",
"test": "jest"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"axios": "^1.4.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"mongoose": "^7.4.5",
"winston": "^3.10.0"
},
"devDependencies": {
"@babel/core": "^7.22.10",
"@babel/preset-env": "^7.22.10",
"@babel/preset-typescript": "^7.22.5",
"@jest/globals": "^29.6.2",
"@types/cors": "^2.8.14",
"@types/express": "^4.17.17",
"@types/node": "^20.5.0",
"@types/supertest": "^2.0.12",
"@typescript-eslint/eslint-plugin": "^6.4.0",
"@typescript-eslint/parser": "^6.4.0",
"babel-jest": "^29.6.2",
"eslint": "^8.47.0",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}