-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathpackage.json
More file actions
119 lines (119 loc) · 3.93 KB
/
Copy pathpackage.json
File metadata and controls
119 lines (119 loc) · 3.93 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
"private": true,
"name": "indiekit",
"description": "The little server that connects your website to the independent web.",
"keywords": [
"indieweb",
"micropub"
],
"homepage": "https://getindiekit.com",
"author": {
"name": "Paul Robert Lloyd",
"url": "https://paulrobertlloyd.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/getindiekit/indiekit/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/getindiekit/indiekit.git"
},
"engines": {
"node": ">=24.17",
"npm": ">=11"
},
"type": "module",
"scripts": {
"postinstall": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"dev": "node --watch-path=./ packages/indiekit/bin/cli.js serve",
"db:up": "docker compose up --detach --wait",
"db:down": "docker compose down",
"db:reset": "docker compose down --volumes",
"debug": "indiekit serve --debug",
"start": "indiekit serve",
"lint:prettier": "prettier . --check",
"lint:prettier:fix": "prettier . --write",
"lint:js": "eslint '**/*.js'",
"lint:js:fix": "eslint '**/*.js' --fix",
"lint:css": "stylelint '**/*.css'",
"lint:css:fix": "stylelint '**/*.css' --fix",
"lint": "npm run lint:prettier && npm run lint:js && npm run lint:css",
"lint:fix": "npm run lint:prettier:fix && npm run lint:js:fix && npm run lint:css:fix",
"test": "NODE_ENV=test SECRET=${SECRET:-test} PASSWORD_SECRET=${PASSWORD_SECRET:-test} node --test --test-reporter=spec",
"test:coverage": "NODE_ENV=test SECRET=${SECRET:-test} PASSWORD_SECRET=${PASSWORD_SECRET:-test} node --test --experimental-test-coverage",
"test:lcov": "NODE_ENV=test SECRET=${SECRET:-test} PASSWORD_SECRET=${PASSWORD_SECRET:-test} node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info"
},
"workspaces": [
"helpers/*",
"packages/*"
],
"dependencies": {
"dotenv": "^17.4.2",
"husky": "^9.1.7",
"lerna": "^10.0.0",
"sharp": "^0.35.3"
},
"devDependencies": {
"@atproto/dev-env": "^0.6.2",
"@commitlint/cli": "^21.2.2",
"@commitlint/config-conventional": "^21.2.2",
"@eslint/js": "^10.0.1",
"@indiekit-test/config": "*",
"@indiekit-test/database": "*",
"@indiekit-test/fixtures": "*",
"@indiekit-test/frontend": "*",
"@indiekit-test/media-data": "*",
"@indiekit-test/mock-agent": "*",
"@indiekit-test/post-data": "*",
"@indiekit-test/publication": "*",
"@indiekit-test/server": "*",
"@indiekit-test/session": "*",
"@indiekit-test/store": "*",
"@indiekit-test/token": "*",
"@micham/sftp-mock-server": "^0.0.6",
"@types/cookie-session": "^2.0.49",
"@types/express": "^5.0.6",
"@types/express-fileupload": "^1.5.1",
"@types/lodash": "^4.17.25",
"aws-sdk-client-mock": "^4.1.0",
"cookie-session": "^2.1.1",
"create-indiekit": "*",
"date-fns": "^4.4.0",
"eslint": "^10.8.1",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-node": "^0.4.0",
"eslint-plugin-import-x": "^4.17.1",
"eslint-plugin-jsdoc": "^64.2.0",
"eslint-plugin-unicorn": "^73.0.0",
"eslint-plugin-wc": "^3.1.0",
"globals": "^17.11.0",
"jsdom": "^30.0.1",
"lint-staged": "^17.3.0",
"markdown-it-anchor": "^9.2.1",
"markdown-it-deflist": "^4.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"mock-fs": "^5.5.0",
"mock-req-res": "^1.2.1",
"mock-session": "^0.0.5",
"mongodb-memory-server": "^11.2.0",
"prettier": "^3.9.6",
"stylelint": "^17.14.1",
"stylelint-config-recommended": "^18.0.0",
"stylelint-order": "^8.1.1",
"supertest": "^7.2.2",
"undici": "7.29.0",
"vitepress": "^1.6.4"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.62.4",
"lightningcss-linux-x64-gnu": "^1.33.0"
},
"overrides": {
"sharp": "^0.35.3",
"js-yaml": "4.3.1"
}
}