-
-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
108 lines (108 loc) · 3.35 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
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
{
"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": "^22",
"npm": "^10"
},
"type": "module",
"scripts": {
"prepublishOnly": "localazy download",
"postinstall": "husky",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"dev": "node --watch-path=./ packages/indiekit/bin/cli.js serve",
"start": "indiekit serve --debug",
"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 --test --test-reporter=spec",
"test:coverage": "node --test --experimental-test-coverage",
"test:lcov": "node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info"
},
"workspaces": [
"helpers/*",
"packages/*"
],
"dependencies": {
"dotenv": "^16.0.0",
"husky": "^9.0.0",
"lerna": "^8.0.0",
"sharp": "^0.33.5"
},
"devDependencies": {
"@commitlint/cli": "^19.0.0",
"@commitlint/config-conventional": "^19.0.0",
"@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.44",
"@types/express": "^5.0.0",
"@types/express-fileupload": "^1.4.1",
"@types/lodash": "^4.14.195",
"aws-sdk-client-mock": "^4.0.0",
"cookie-session": "^2.0.0",
"create-indiekit": "*",
"date-fns": "^4.0.0",
"eslint": "9.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^50.0.0",
"eslint-plugin-unicorn": "^56.0.0",
"eslint-plugin-wc": "^2.1.0",
"jsdom": "^25.0.0",
"lint-staged": "^15.0.0",
"markdown-it-anchor": "^9.0.0",
"markdown-it-deflist": "^3.0.0",
"markdown-it-footnote": "^4.0.0",
"markdown-it-task-lists": "^2.1.1",
"mock-fs": "^5.1.2",
"mock-req-res": "^1.2.0",
"mock-session": "^0.0.5",
"mongodb-memory-server": "^10.0.0",
"nock": "^13.1.3",
"prettier": "^3.0.0",
"stylelint": "^16.0.0",
"stylelint-config-recommended": "^14.0.0",
"stylelint-order": "^6.0.0",
"supertest": "^7.0.0",
"undici": "^6.11.0",
"vitepress": "^1.0.0"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "^4.21.0"
}
}