-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.57 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.57 KB
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
{
"name": "blair-bot",
"version": "0.1.0",
"private": true,
"dependencies": {
"blocked-at": "^1.0.3",
"bluebird": "^3.5.1",
"bufferutil": "^3.0.1",
"canvas": "^1.6.6",
"chalk": "^2.0.1",
"cross-env": "^5.0.5",
"eris": "abalabahaha/eris#dev",
"eris-lavalink": "briantanner/eris-lavalink",
"erlpack": "abalabahaha/erlpack",
"eventemitter3": "^2.0.3",
"fast-async": "^6.3.0",
"ioredis": "^3.1.4",
"matcher": "^1.0.0",
"moment-duration-format": "^1.3.0",
"node-dogstatsd": "^0.0.6",
"node-fetch": "^1.7.1",
"pokedex-promise-v2": "^3.0.3",
"pre-commit": "^1.2.2",
"raven": "^2.1.2",
"uws": "^8.14.0",
"valid-url": "^1.0.9",
"weeb-sh": "^0.3.2",
"yargs-parser": "^8.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.26.0",
"chai": "^4.1.1",
"dirty-chai": "^2.0.1",
"mocha": "^3.5.0",
"nodemon": "^1.11.0",
"pm2": "^2.6.1",
"standard": "^10.0.2"
},
"scripts": {
"lint": "standard",
"build": "babel src -d dist",
"build_local": "babel src -d dist --source-maps",
"start": "cross-env NODE_ENV=dev nodemon src/index.js --exec babel-node",
"test": "cross-env NODE_ENV=test mocha --compilers js:node_modules/babel-register --timeout 15000 --recursive test/index.js test/*/**",
"deploy": "pm2 deploy production",
"pm2_start": "pm2 start dist/index.js --name blair",
"pm2_stop": "pm2 delete blair"
},
"pre-commit": [
"lint"
]
}