-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.02 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.02 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
{
"name": "linkboard",
"version": "1.0.0",
"description": "A minimal, stylish app to save links as copyable, metadata-rich buttons.",
"license": "MIT",
"private": true,
"type": "module",
"main": "server.js",
"engines": {
"node": ">=20.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joonfjp/linkboard.git"
},
"bugs": {
"url": "https://github.com/joonfjp/linkboard/issues"
},
"homepage": "https://github.com/joonfjp/linkboard#readme",
"scripts": {
"start": "node server.js",
"dev": "node --watch server.js",
"check": "npm run format:check && npm run lint && npm test",
"format": "prettier --write .",
"format:check": "prettier --check .",
"lint": "eslint .",
"test": "node --test"
},
"dependencies": {
"express": "^5.2.1",
"htmlparser2": "^12.0.0",
"ipaddr.js": "^2.2.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.6.0",
"globals": "^17.7.0",
"prettier": "^3.8.1",
"supertest": "^7.2.2"
}
}