-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 844 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
{
"name": "baseball",
"version": "1.0.0",
"description": "A custom baseball sim league",
"main": "app.js",
"scripts": {
"build": "tsc",
"server": "node ./dist/server/server.js",
"open": "start msedge http://localhost:3333",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nickdloucks/baseball.git"
},
"keywords": [
"baseball"
],
"author": "Nick, Noah",
"license": "ISC",
"bugs": {
"url": "https://github.com/nickdloucks/baseball/issues"
},
"homepage": "https://github.com/nickdloucks/baseball#readme",
"dependencies": {
"@azure/cosmos": "^3.15.0",
"dotenv": "^10.0.0",
"express": "^4.17.1",
"mongodb": "^4.2.2"
},
"devDependencies": {
"@types/express": "^4.17.13",
"nodemon": "^2.0.15",
"typescript": "^4.5.4"
}
}