-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.52 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.52 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
{
"private": true,
"name": "stock-printer-proxy",
"version": "7.0.1",
"description": "A public server to proxy requests to printers on the intranet",
"repository": "git@github.com:cheminfo/stock-printer-proxy.git",
"author": "Daniel Kostro <kostro.d@gmail.com>",
"license": "MIT",
"type": "module",
"dependencies": {
"@fastify/cors": "^11.2.0",
"@fastify/swagger": "^9.7.0",
"@fastify/swagger-ui": "^5.2.5",
"@sinclair/typebox": "^0.34.48",
"body-parser": "^2.2.2",
"fastify": "^5.8.1",
"fastify-graceful-shutdown": "^5.0.0",
"rest-on-couch-client": "^8.0.0",
"twig": "^1.17.1"
},
"devDependencies": {
"@types/node": "^24.10.13",
"@types/twig": "^1.12.17",
"@zakodium/tsconfig": "^1.0.2",
"eslint": "^9.39.1",
"eslint-config-zakodium": "^19.1.0",
"expect": "^30.2.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"scripts": {
"build": "tsc",
"check-types": "tsc --noEmit",
"eslint": "eslint --cache ./",
"eslint-fix": "eslint --fix ./",
"prettier": "prettier --check ./",
"prettier-write": "prettier --write ./",
"start": "node --env-file=.env lib/src/server.js",
"dev": "node --watch --env-file=.env src/server.ts",
"test-only": "node --test",
"test": "npm run prettier && npm run eslint && npm run check-types && npm run test-only"
},
"volta": {
"node": "24.11.1"
}
}