-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.29 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
{
"name": "label-print-server",
"private": true,
"version": "1.5.1",
"description": "Print server for network-connected label printers",
"main": "src/server.js",
"scripts": {
"dev": "nodemon src/server.js",
"eslint": "eslint src scripts",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakodium/label-print-server.git"
},
"keywords": [
"label",
"print",
"server",
"zebra",
"printer",
"network"
],
"author": "Michael Zasso",
"license": "MIT",
"bugs": {
"url": "https://github.com/zakodium/label-print-server/issues"
},
"homepage": "https://github.com/zakodium/label-print-server#readme",
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"envalid": "^6.0.2",
"fastify": "^3.29.4",
"fastify-mongodb": "^2.0.1",
"fastify-plugin": "^3.0.0",
"got": "^11.8.5",
"make-promises-safe": "^5.1.0"
},
"devDependencies": {
"@zakodium/eslint-config": "^2.2.1",
"eslint": "^7.17.0",
"ipp": "^2.0.1",
"nodemon": "^2.0.6",
"pino-pretty": "^4.3.0",
"prettier": "^2.2.1"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
}
}