-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.23 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
{
"name": "fictionpress-scraper",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "sudo PORT=80 forever start -w ./web/server.js",
"start:dev": "nodemon ./web/server.js",
"test": "jest",
"format": "prettier *.js **/*.js --write",
"cli": "node ./cli/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/llexical/fictionpress-scraper.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/llexical/fictionpress-scraper/issues"
},
"homepage": "https://github.com/llexical/fictionpress-scraper#readme",
"dependencies": {
"aws-sdk": "^2.389.0",
"cheerio": "^1.0.0-rc.2",
"cli-progress": "^2.1.1",
"commander": "^2.19.0",
"dotenv": "^6.2.0",
"express": "^4.16.4",
"forever": "^0.15.3",
"moment": "^2.23.0",
"nodemon": "^1.18.9",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"socks-proxy-agent": "^4.0.1"
},
"devDependencies": {
"husky": "^1.3.1",
"jest": "^23.6.0",
"prettier": "^1.15.3"
},
"jest": {
"testMatch": [
"**/?(*.)(spec|test).js?(x)"
]
},
"husky": {
"hooks": {
"pre-commit": "npm test && npm run format"
}
}
}