-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.39 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": "stable-confusion",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "tsc",
"build:tests": "tsc -p ./tsconfig.test.json",
"clean": "rimraf ./dist && rimraf ./dist.tests",
"predev": "yarn run clean && yarn run build",
"dev": "DISCORD_TOKEN=MTAxNDA3MjA2OTAyMzA4ODY1MA.G6B1UR.Rez2fWA39fjCLL8sutUWQk23Mu4e94u1y5GQnc yarn run start",
"start": "node ./dist/index.js",
"pretest": "yarn run clean && yarn run build:tests",
"test": "mocha ./dist.tests/tests/**/**/*.test.js"
},
"author": "GotKrypto",
"license": "MIT",
"dependencies": {
"axios": "^0.27.2",
"bluebird": "^3.7.2",
"discord.js": "^14.3.0",
"ramda": "^0.28.0",
"sharp": "^0.31.0",
"uuid": "^8.3.2",
"winston": "^3.8.1"
},
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.3",
"@types/mocha": "^9.1.1",
"@types/ramda": "^0.28.15",
"@types/sharp": "^0.31.0",
"@types/sinon": "^10.0.13",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.38.0",
"@typescript-eslint/parser": "^5.38.0",
"chai": "^4.3.6",
"eslint": "^8.24.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nodemon": "^2.0.19",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"typescript": "^4.8.2"
}
}