-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
71 lines (71 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
{
"name": "rumors-fb-bot",
"version": "0.1.0",
"description": "FB bot that checks if a message contains internet rumor. A side project under Cofacts.",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "node main.js",
"lint": "eslint .",
"build": "babel src -d build",
"renew": "node build/renew.js",
"i18n:init": "ttag init $LOCALE i18n/$LOCALE.po",
"i18n:extract": "ttag update i18n/$LOCALE.po src/",
"i18n:validate": "ttag validate i18n/$LOCALE.po"
},
"author": "changhc",
"license": "MIT",
"dependencies": {
"@babel/polyfill": "^7.0.0",
"@babel/runtime-corejs2": "^7.0.0",
"babel-runtime": "^6.22.0",
"dotenv": "^8.0.0",
"googleapis": "^32.0.0",
"koa": "^2.5.0",
"koa-router": "^7.4.0",
"koa-static": "^5.0.0",
"node-fetch": "^2.0.0",
"pm2": "=2.10.4",
"raw-body": "^2.3.3",
"redis": "^2.6.5",
"rollbar": "^2.2.9",
"string-similarity": "^1.1.0",
"ttag": "^1.7.20",
"universal-analytics": "^0.4.18",
"url-regex": "^4.1.1"
},
"devDependencies": {
"@babel/cli": "^7.6.0",
"@babel/core": "^7.6.0",
"@babel/node": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/plugin-proposal-json-strings": "^7.2.0",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-syntax-import-meta": "^7.2.0",
"@babel/preset-env": "^7.6.0",
"babel-eslint": "^10.0.3",
"babel-jest": "^24.9.0",
"coveralls": "^3.0.0",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.9.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-prettier": "^3.1.2",
"jest-cli": "^24.9.0",
"prettier": "^1.19.1",
"ttag-cli": "^1.7.27"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"collectCoverage": true,
"coveragePathIgnorePatterns": [
"/__fixtures__/"
]
},
"engines": {
"node": "10.x",
"npm": "6.13.0"
}
}