-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.61 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
63
64
{
"name": "craig-as-a-service",
"version": "1.0.0",
"main": "index.js",
"license": "ISC",
"keywords": [
"node",
"nodejs",
"docker",
"recording",
"discord",
"discordjs",
"typescript",
"docker-compose",
"bot"
],
"scripts": {
"pretest": "./node_modules/.bin/jest --clearCache",
"test": "./node_modules/.bin/jest",
"prebuild": "rm -rf build/*",
"build": "tsc && cp package.json dist/package.json",
"postbuild": "cp -r src/assets dist/src/",
"start:dev": "npm run build && node -r dotenv-safe/config dist/main.js "
},
"dependencies": {
"@discordjs/opus": "^0.3.2",
"bufferutil": "^4.0.1",
"cyclic-32": "^1.1.0",
"eris": "^0.13.3",
"erlpack": "github:abalabahaha/erlpack",
"inversify": "^5.0.1",
"ioredis": "^4.19.0",
"reflect-metadata": "^0.1.13",
"ts-node": "^9.0.0",
"tslib": "^2.0.3",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"@types/ioredis": "^4.17.6",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.2",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"dotenv-safe": "^8.2.0",
"eslint": "^7.12.0",
"eslint-config-prettier": "^6.14.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^26.6.1",
"prettier": "^2.1.2",
"ts-jest": "^26.4.2",
"typescript": "^4.0.3"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"plugin:@typescript-eslint/recommended",
"prettier/@typescript-eslint",
"plugin:prettier/recommended"
]
}
}