-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.84 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
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "snode",
"version": "1.1.2",
"main": "out/src/index.js",
"repository": "https://github.com/vinceTheProgrammer/snode.git",
"engines": {
"node": "16.x"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"postinstall": "tsc",
"test": "jest",
"start": "node out/src/index.js",
"watch:start": "tsc-watch --onSuccess \"node ./out/src/index.js\"",
"format": "prettier --write \"src/**/*.ts\"",
"commit": "commit",
"release": "standard-version"
},
"prettier": "@sapphire/prettier-config",
"author": "vinceTheProgrammer <[email protected]>",
"license": "MIT",
"dependencies": {
"@kaname-png/plugin-statcord": "^2.1.2",
"@sapphire/async-queue": "^1.4.0",
"@sapphire/decorators": "^4.3.8",
"@sapphire/fetch": "^2.4.1",
"@sapphire/framework": "^3.0.0-next.8ca7d7e.0",
"@sapphire/plugin-scheduled-tasks": "^3.0.0",
"@sapphire/snowflake": "^3.2.2",
"@sapphire/stopwatch": "^1.4.1",
"@sapphire/type": "^2.2.4",
"binarytf": "^2.1.1",
"bullmq": "^1.87.1",
"cheerio": "^1.0.0-rc.12",
"discord-api-types": "0.33.5",
"discord.js": "^13",
"dotenv": "^16.0.1",
"fast-average-color-node": "^2.4.0",
"ioredis": "^5.2.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/preset-typescript": "^7.18.6",
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@commitlint/prompt-cli": "^17.0.3",
"@sapphire/prettier-config": "^1.4.3",
"@sapphire/ts-config": "^3.3.4",
"@types/jest": "^28.1.6",
"@types/lodash": "^4.14.182",
"babel-jest": "^28.1.3",
"commitlint": "^17.0.3",
"jest": "^28.1.3",
"prettier": "^2.7.1",
"standard-version": "^9.5.0",
"tsc-watch": "^5.0.3",
"typescript": "^4.7.4"
}
}