-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 923 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 923 Bytes
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
{
"name": "seflscanfun",
"version": "1.1.25",
"description": "Albert Heijn Zelfscanner Simulatie - Een interactieve self-scanner ervaring",
"engines": {
"node": ">=24.0.0"
},
"main": "index.js",
"scripts": {
"test": "node test-runner.js",
"test:browser": "echo 'Open http://localhost:8000/test.html in your browser'",
"start": "node server.js",
"dev": "node server.js",
"lint": "eslint . --fix",
"lint:check": "eslint .",
"format": "prettier --write .",
"format:check": "prettier --check .",
"prepare": "command -v pre-commit >/dev/null 2>&1 && pre-commit install || echo 'pre-commit not installed, skipping hook installation'"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"express": "^5.2.1"
},
"devDependencies": {
"eslint": "^9.39.4",
"jsdom": "^27.4.0",
"neostandard": "^0.13.0",
"prettier": "^3.8.3"
}
}