-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.3 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
40
41
42
43
44
45
46
47
48
{
"name": "discord-game-server-manager",
"version": "0.0.1",
"description": "API for handling Discord slash commands to manage a private game server",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"run": "node dist/index.js",
"clean": "rimraf dist",
"lint": "eslint --ext .ts .",
"test": "jest",
"watch": "concurrently \"npx tsc --watch\" \"nodemon -q dist/index.js\""
},
"keywords": [
"TypeScript",
"Express"
],
"author": "Damon Myers",
"license": "ISC",
"devDependencies": {
"@types/aws-lambda": "^8.10.72",
"@types/express": "^4.17.13",
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^4.15.2",
"@typescript-eslint/parser": "^4.15.2",
"concurrently": "^7.1.0",
"eslint": "^7.20.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"jest": "^26.6.3",
"nodemon": "^2.0.15",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"slash-commands": "^1.5.0",
"ts-jest": "^26.5.2",
"ts-loader": "^8.0.17",
"ts-node": "^9.1.1",
"typescript": "^4.2.2",
"yaml-cfn": "^0.3.0"
},
"dependencies": {
"aws-sdk": "^2.850.0",
"axios": "^0.26.1",
"discord-interactions": "^3.2.0",
"express": "^4.17.3",
"source-map-support": "^0.5.19"
}
}