-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.43 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
{
"name": "gren-packages",
"type": "module",
"version": "5.0.0",
"description": "The server powering package.gren-lang.org",
"keywords": [
"gren",
"lang",
"language",
"doc",
"documentation",
"package",
"preview"
],
"main": "index.js",
"bin": {
"gren-doc-preview": "bin/gren-doc-preview.js"
},
"imports": {
"#src/*": "./src/*.js",
"#db/*": "./src/db/*.js",
"#utils/*": "./src/utils/*.js",
"#routes/*": "./src/routes/*.js"
},
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"dev": "nodemon -e ejs,js,css ./src/app.js",
"prettier": "prettier -w ."
},
"author": "Robin Heggelund Hansen",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/gren-lang/package.gren-lang.org/issues"
},
"homepage": "https://packages.gren-lang.org",
"engines": {
"node": "20.*"
},
"dependencies": {
"@koa/router": "^12.0.0",
"@markslides/markdown-it-mermaid": "^0.3.2",
"axios": "^1.7.2",
"ejs": "^3.1.8",
"gren-lang": "^0.5.2",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-compress": "^5.1.0",
"koa-static": "^5.0.0",
"koa2-winston": "^3.1.1",
"markdown-it": "13.0.1",
"semver": "^7.3.8",
"sqlite3": "^5.1.2",
"winston": "^3.8.2",
"xdg-basedir": "^5.1.0"
},
"devDependencies": {
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "3.0.0"
}
}