-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
49
50
{
"name": "pp",
"version": "0.1.0",
"license": "MIT",
"scripts": {
"start": "tsnd src/index.ts",
"bump": "yarn compile && standard-version && git push --follow-tags origin master",
"test": "gts check",
"clean": "gts clean",
"compile": "tsc",
"fix": "gts fix",
"prepare": "yarn run compile",
"pretest": "yarn run compile",
"posttest": "yarn test"
},
"dependencies": {
"@discordjs/opus": "0.3.2",
"@types/bson": "4.0.2",
"@types/colornames": "1.1.1",
"@types/fuzzy-search": "2.1.0",
"@types/node": "12.12.51",
"@types/ws": "7.2.5",
"axios": "0.19.2",
"bson": "4.0.4",
"colornames": "1.1.1",
"colors": "1.4.0",
"commitizen": "4.1.2",
"discord.js": "12.2.0",
"express": "4.17.1",
"ffmpeg-static": "4.2.3",
"fuzzy-search": "3.2.1",
"socket.io": "2.3.0"
},
"devDependencies": {
"@commitlint/cli": "9.1.1",
"@commitlint/config-conventional": "9.1.1",
"cz-conventional-changelog": "3.2.0",
"dotenv": "8.2.0",
"gts": "2.0.2",
"husky": "4.2.5",
"standard-version": "8.0.1",
"ts-node-dev": "1.0.0-pre.52",
"typescript": "3.9.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}