forked from opyh/pcsc-over-http
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 903 Bytes
/
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
{
"name": "pcsc-over-ddp",
"version": "1.0.0",
"description": "Controls PC/SC readers over DDP.",
"main": "dist/index.js",
"license": "MIT",
"dependencies": {
"@serialport/parser-delimiter": "^2.0.2",
"@serialport/parser-inter-byte-timeout": "^1.1.0",
"@serialport/parser-readline": "^2.0.2",
"p-event": "^4.1.0",
"serialport": "^7.1.5",
"systemd-socket": "0.0.0",
"ts-node": "^8.3.0"
},
"scripts": {
"start": "ts-node src/index.ts",
"install-daemon": "nvm install 11 && sudo cp -f systemd/memcard-server.* /etc/systemd/system/ && sudo systemctl daemon-reload"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/serialport": "^7.0.3",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"tslint": "^5.17.0",
"tslint-config-airbnb": "^5.11.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.5.1"
}
}