forked from hivesolutions/headless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.68 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
{
"name": "hive-headless",
"version": "0.2.6",
"description": "Simple Web App for headless functions",
"keywords": [
"headless",
"pdf"
],
"homepage": "https://github.com/hivesolutions/headless#readme",
"bugs": {
"url": "https://github.com/hivesolutions/headless/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hivesolutions/headless.git"
},
"license": "Apache-2.0",
"author": "Hive Solutions",
"main": "app.js",
"files": [
"app.js",
"lib/**/*.css",
"lib/**/*.js",
"test/**/*.js"
],
"scripts": {
"dev": "nodemon app.js",
"lint": "eslint \"./**/*.js\"",
"lint-fix": "eslint \"./**/*.js\" --fix",
"prettier": "prettier \"./**/*.{js,json}\" --write",
"pretty": "npm run prettier && npm run lint-fix",
"start": "node app.js",
"test": "mocha --recursive",
"upgrade": "npx sort-package-json && ncu -u"
},
"dependencies": {
"consola": "^2.15.3",
"express": "^4.18.2",
"hive-js-util": "^0.4.1",
"jimp": "^0.22.7",
"mz": "^2.7.0",
"phantom": "^6.3.0",
"puppeteer": "^20.0.0",
"uuid": "^9.0.0",
"yonius": "^0.13.5"
},
"devDependencies": {
"eslint": "^8.39.0",
"eslint-config-hive": "^0.6.0",
"eslint-plugin-n": "^15.7.0",
"mocha": "^10.2.0",
"nodemon": "^2.0.22",
"npm-check-updates": "^16.10.9",
"prettier": "^2.8.8",
"prettier-config-hive": "^0.1.7",
"sort-package-json": "^2.4.1"
}
}