-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.74 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
{
"private": true,
"name": "stock-printer-proxy",
"version": "6.4.0",
"description": "A public server to proxy requests to printers on the intranet",
"main": "src/server.js",
"repository": "[email protected]:cheminfo/stock-printer-proxy.git",
"author": "Daniel Kostro <[email protected]>",
"license": "MIT",
"dependencies": {
"@fastify/cors": "^8.3.0",
"@fastify/swagger": "^8.8.0",
"@fastify/swagger-ui": "^1.9.3",
"@sinclair/typebox": "^0.30.2",
"@types/jest": "^29.5.3",
"@types/twig": "^1.12.9",
"body-parser": "^1.20.2",
"fastify": "^4.21.0",
"fastify-graceful-shutdown": "^3.5.1",
"rest-on-couch-client": "^5.3.1",
"superagent": "^8.0.9",
"ts-jest": "^29.1.1",
"twig": "^1.16.0"
},
"scripts": {
"build": "tsc",
"check-types": "tsc --noEmit",
"eslint": "eslint --cache src",
"eslint-fix": "eslint --fix src",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"start": "env-cmd node lib/src/server.js",
"dev": "env-cmd nodemon --config nodemon.json src/server.ts",
"test-only": "jest",
"test": "npm run prettier && npm run eslint && npm run check-types && npm run test-only"
},
"devDependencies": {
"@types/node": "^20.4.6",
"@types/superagent": "^4.1.18",
"env-cmd": "^10.1.0",
"eslint": "^8.46.0",
"eslint-config-zakodium": "^8.0.2",
"fastify-tsconfig": "^1.0.1",
"jest": "^29.6.2",
"nodemon": "^3.0.1",
"prettier": "^3.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"volta": {
"node": "18.17.0"
}
}