-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.92 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
65
66
67
68
69
70
71
72
73
{
"name": "friendlybot",
"version": "1.0.0",
"description": "some bot",
"main": "index.js",
"scripts": {
"start": "yarn build && cd dist && npx nodemon main.js",
"dev": "npx nodemon -L --watch src --watch .env --watch operations.yml --watch gulpfile.babel.js --exec \"npx gulp build && node\" ./dist/main.js",
"test": "npx jest",
"test:watch": "npx jest --watch",
"build": "npx gulp build",
"lint": "yarn fix && npx xo --prettier src/**/*.js",
"fix": "npx prettier --write \"./**/*.js\""
},
"xo": {
"rules": {
"linebreak-style": 0,
"no-else-return": 0,
"no-new": 0,
"unicorn/import-index": 0
},
"globals": [
"it",
"describe",
"expect",
"document",
"jest",
"beforeEach"
]
},
"jest": {
"verbose": true,
"roots": [
"<rootDir>/src/"
]
},
"author": "DeepCollege",
"license": "MIT",
"dependencies": {
"@babel/preset-env": "^7.0.0-beta.44",
"@babel/register": "^7.0.0-beta.44",
"async": "^2.6.0",
"axios": "^0.18.0",
"babel-eslint": "^8.2.3",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-es2015-arrow-functions": "^6.22.0",
"babel-plugin-transform-es2015-block-scoping": "^6.26.0",
"babel-plugin-transform-es2015-parameters": "^6.24.1",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-register": "^6.26.0",
"cheerio": "^1.0.0-rc.2",
"cron": "^1.3.0",
"discord.js": "^11.3.2",
"dotenv": "^5.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.1",
"gulp-clean": "^0.4.0",
"gulp-sourcemaps": "^2.6.4",
"jest": "^22.4.3",
"moment": "^2.22.1",
"puppeteer": "^1.3.0",
"ramda": "^0.25.0",
"require-all": "^2.2.0",
"run-sequence": "^2.2.1",
"xo": "^0.20.3",
"yamljs": "^0.3.0"
},
"devDependencies": {
"flow-bin": "^0.69.0"
}
}