-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 969 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
{
"name": "ghostcms-activitypub",
"version": "0.4.1",
"private": true,
"license": {
"type": "MIT",
"url": "https://opensource.org/licenses/MIT"
},
"type": "module",
"scripts": {
"start": "NODE_ENV=production node ./bin/www.js",
"manual_post": "./bin/manual_post.js",
"lint": "npx eslint --fix app.js bin/ src/ migrations/",
"dev": "npm run lint && NODE_ENV=development DEBUG=ghostcms-activitypub:* node ./bin/www.js",
"newRelease": "node ./bin/new_release.js"
},
"dependencies": {
"@tryghost/content-api": "^1.11.7",
"bent": "^7.3.12",
"debug": "~2.6.9",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"knex": "^2.4.2",
"morgan": "~1.9.1",
"p-queue": "^7.3.4",
"sqlite3": "^5.1.6"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1"
}
}