-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 2.03 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": "Distrocord",
"description": "Distributed Discord Library",
"license": "MIT",
"bin": {
"distrocord-config": "./bin/distrocord-config.js"
},
"scripts": {
"barrel": "find ./src -name 'index.ts' -delete && node ./node_modules/.bin/barrelsby -d src/ -l all -s filesystem",
"lint": "tslint -c tslint.json 'src/**/*.ts' --fix",
"build": "yarn run lint && yarn run barrel && tsc",
"watch": "nodemon -w ./src -w package.json --exec 'yarn' run build",
"start": "nodemon -w ./build/index.js --harmony build/index.js",
"dev": "concurrently --kill-others \"yarn run watch\" \"yarn run start\"",
"debug": "nodemon -w build --harmony --inspect-brk=9229 build/index.js"
},
"dependencies": {
"@types/bluebird": "^3.5.8",
"@types/es6-promise": "^0.0.33",
"@types/mongodb": "^2.2.10",
"@types/node": "^8.0.25",
"@types/node_redis": "^0.8.29",
"@types/redis": "^2.6.0",
"@types/uws": "^0.13.0",
"@types/winston": "^2.3.5",
"barrelsby": "^0.0.4",
"bluebird": "^3.5.0",
"bson": "^1.0.4",
"chalk": "^2.1.0",
"class-validator": "^0.7.2",
"concurrently": "^3.5.0",
"erlpack": "^0.1.2",
"eventemitter3": "^2.0.3",
"https": "^1.0.0",
"mongo": "^0.1.0",
"mongot": "^1.4.15",
"nodemon": "^1.10,<1.11",
"prompt": "^1.0.0",
"redis": "^2.8.0",
"reflect-metadata": "^0.1.10",
"source-map-support": "^0.4.16",
"ts-node": "^3.3.0",
"tslint": "^5.7.0",
"typescript": "^2.4.2",
"uws": "^8.14.1",
"validator.ts": "^0.2.2",
"winston": "^2.3.1",
"zlib": "^1.0.5"
}
}