-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 880 Bytes
/
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
{
"name": "fake-mastodon-instance",
"version": "1.0.0",
"description": "",
"main": "src/index.js",
"scripts": {
"prettier": "prettier --write ./**/*.js*",
"lint": "eslint .",
"start": "node src/index.js",
"crawl": "./bin/crawlTwitter.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.18.3",
"dotenv": "^4.0.0",
"express": "^4.16.3",
"lodash": "^4.17.10",
"mongoose": "^4.11.12",
"prettier": "^1.14.2",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"twit": "^2.2.11",
"twitter-text": "^2.0.4",
"useragent": "^2.3.0"
},
"devDependencies": {
"eslint": "^5.4.0",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-prettier": "^3.0.1",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.11.1"
}
}