-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 940 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": "xbox-clips-node-server",
"version": "0.0.1",
"description": "REST server setup for Xbox Clips",
"main": "index.js",
"scripts": {
"build": "tsc",
"start": "node ./dist/server.js",
"dev": "npm run build && npm run start"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aaron-bond/xbox-clips-node-server.git"
},
"author": "aaron-bond",
"license": "MIT",
"bugs": {
"url": "https://github.com/aaron-bond/xbox-clips-node-server/issues"
},
"homepage": "https://aaron-bond.github.io/xbox-clips",
"dependencies": {
"@types/express": "^4.17.0",
"@xboxreplay/xboxlive-api": "^3.4.3",
"@xboxreplay/xboxlive-auth": "^1.0.1",
"axios": "^0.19.0",
"body-parser": "^1.19.0",
"cors": "^2.8.5",
"dotenv": "8.0.0",
"express": "^4.17.0",
"nodemon": "^1.19.1"
},
"devDependencies": {
"tslint": "^5.18.0",
"typescript": "^3.5.3"
}
}