-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.28 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
{
"name": "harmonia",
"version": "0.0.1",
"description": "A music-focused Discord bot with Last.fm features, song sharing/voting, and (planned for future) audio streaming.",
"main": "index.js",
"scripts": {
"build": "npm run lint && tsc",
"dev": "nodemon src/index.ts",
"lint": "tsc --noEmit && eslint \"**/*.{js,ts}\" --quiet --fix",
"serve": "node dist/index.js",
"serve-debug": "nodemon --inspect dist/index.js",
"start": "npm run serve",
"test": "jest --forceExit --coverage --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/patricianapp/Harmonia2.git"
},
"author": "Elias Jackson",
"license": "ISC",
"bugs": {
"url": "https://github.com/patricianapp/Harmonia2/issues"
},
"homepage": "https://github.com/patricianapp/Harmonia2#readme",
"dependencies": {
"@prisma/client": "^2.15.0",
"discord-akairo": "^8.1.0",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@prisma/cli": "^2.15.0",
"@types/node": "^14.14.22",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"eslint": "^7.18.0",
"jest": "^26.6.3",
"nodemon": "^2.0.7",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}