-
Notifications
You must be signed in to change notification settings - Fork 59
/
package.json
79 lines (79 loc) · 2.7 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
74
75
76
77
78
79
{
"name": "epub-press",
"title": "EpubPress - Read the web offline",
"description": "A browser extension for creating ebooks from your favorite webpages. Build books that are totally custom, offline and compatible with all your devices.",
"image": "https://epub.press/images/logo-full.jpg",
"license": "GPL-3.0+",
"version": "1.0.0",
"private": true,
"engines": {
"node": ">=6.9.0"
},
"scripts": {
"start": "nodemon --harmony ./bin/www",
"start:debug": "node --inspect ./bin/www",
"start:docker": "npm run wait:db && npm run db:migrate && node ./bin/www",
"test": "jest",
"test:ci": "npm run test:unit && npm run test:integration",
"test:coverage": "npm test -- --coverage",
"test:unit": "jest --testMatch **/tests/*-test.js",
"test:models": "jest --testMatch **/tests/models/**/*-test.js",
"test:integration": "jest --testMatch **/tests/integration/**/*-test.js",
"lint": "eslint .",
"wait:db": "node scripts/wait-for-postgres.js",
"format": "prettier-eslint $PWD/\"**/*.js\" --single-quote --write --tab-width 4",
"db:migrate": "sequelize db:migrate"
},
"dependencies": {
"bluebird": "^3.7.2",
"body-parser": "^1.19.0",
"cheerio": "^0.22.0",
"commander": "^2.20.3",
"cookie-parser": "^1.4.5",
"debug": "^2.6.9",
"dotenv-flow": "^3.1.0",
"express": "^4.17.1",
"fs-extra": "^5.0.0",
"glob": "^7.1.6",
"htmltidy2": "^0.3.0",
"jimp": "^0.10.3",
"marked": "^0.7.0",
"morgan": "^1.10.0",
"node-readability": "github:haroldtreen/readability",
"nodemailer": "^2.7.0",
"nodepub": "github:haroldtreen/nodepub",
"pg": "^7.18.2",
"pg-hstore": "^2.3.3",
"prom-client": "^12.0.0",
"pug": "^2.0.0",
"request": "^2.88.2",
"request-promise": "^4.2.5",
"sanitize-html": "^1.23.0",
"sequelize": "^5.21.7",
"sequelize-cli": "^5.5.1",
"serve-favicon": "^2.5.0",
"shortid": "^2.2.15",
"string-direction": "^0.1.2",
"sqlite3": "^4.2.0",
"umzug": "^2.3.0",
"winston": "^2.4.4"
},
"devDependencies": {
"ajv": "^6.12.2",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.1.0",
"eslint-plugin-import": "^2.20.2",
"jest": "^25.5.3",
"loadtest": "^2.3.0",
"nock": "^11.9.1",
"nodemon": "^1.19.4",
"prettier": "^2.2.1",
"prettier-eslint-cli": "^5.0.0",
"sinon": "^7.5.0",
"supertest": "^4.0.2"
},
"eslintIgnore": [
"coverage"
]
}