-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
129 lines (129 loc) · 2.94 KB
/
package.json
File metadata and controls
129 lines (129 loc) · 2.94 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
120
121
122
123
124
125
126
127
128
129
{
"name": "pageboard",
"version": "0.17.0",
"description": "Website hosting and editing",
"main": "src/pageboard.js",
"scripts": {
"start": "./bin/pageboard.js",
"test": "mocha"
},
"bin": {
"pageboard": "./bin/pageboard.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pageboard/server.git"
},
"author": "Jérémy Lal <kapouer@melix.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/pageboard/server/issues"
},
"engines": {
"node": "^20.19.0"
},
"packageManager": "pnpm@10.7.0",
"homepage": "https://github.com/pageboard/server#readme",
"workspaces": [
"packages/*"
],
"dependencies": {
"@pageboard/ai": "workspace:*",
"@pageboard/api": "workspace:*",
"@pageboard/auth": "workspace:*",
"@pageboard/cache": "workspace:*",
"@pageboard/core": "workspace:*",
"@pageboard/db": "workspace:*",
"@pageboard/git": "workspace:*",
"@pageboard/image": "workspace:*",
"@pageboard/inspector": "workspace:*",
"@pageboard/mail": "workspace:*",
"@pageboard/polyfill": "workspace:*",
"@pageboard/payment": "workspace:*",
"@pageboard/prerender": "workspace:*",
"@pageboard/print": "workspace:*",
"@pageboard/statics": "workspace:*",
"@pageboard/upload": "workspace:*",
"body-parser": "^2.2.0",
"debug": "^4.4.1",
"dlv": "^1.1.3",
"express": "^5.1.0",
"http-errors": "^2.0.0",
"import-lazy": "^4.0.0",
"lodash.mergewith": "^4.6.2",
"lodash.union": "^4.6.0",
"matchdom": "^19.2.1",
"morgan": "^1.10.1",
"outdent": "^0.8.0",
"pad": "^3.3.0",
"pretty-bytes": "7.0.0",
"resolve-pkg": "^2.0.0",
"speakingurl": "^14.0.1",
"toml": "^3.0.0",
"xdg-basedir": "5.1.0"
},
"eslintConfig": {
"extends": "@kapouer/eslint-config",
"globals": {
"HttpError": true,
"Text": true,
"Log": true
},
"ignorePatterns": [
"!/bin",
"!/packages",
"!/lib",
"!/tests",
"node_modules/"
],
"overrides": [
{
"files": [
"*.js"
],
"rules": {
"no-underscore-dangle": ["error", { "allow": ["_id", "_parent_id"] }]
}
},
{
"files": [
"*.mjs"
],
"parserOptions": {
"sourceType": "module"
}
},
{
"files": [
"tests/*.js"
],
"globals": {
"app": true
},
"env": {
"mocha": true
},
"plugins": [
"mocha"
],
"extends": [
"plugin:mocha/recommended"
],
"rules": {
"prefer-arrow-callback": "off",
"mocha/prefer-arrow-callback": "warn"
}
}
]
},
"mocha": {
"spec": "tests/*.js",
"ui": "tdd"
},
"devDependencies": {
"@kapouer/eslint-config": "^2.2.2",
"eslint": "^8.57.1",
"eslint-plugin-mocha": "^10.5.0",
"mocha": "^11.7.1"
}
}