-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 992 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
31
32
33
34
35
36
37
38
39
{
"name": "wallet-proxy",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .js,.ts ./src",
"start": "ts-node src/index.ts",
"build": "tsc",
"serve": "npm start serve",
"watch": "nodemon --exec \"npm start\""
},
"private": true,
"license": "ISC",
"keywords": [],
"author": "",
"devDependencies": {
"@types/express": "^4.17.9",
"@types/node": "^14.14.20",
"@types/node-hid": "^1.3.0",
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^7.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.3.1",
"nodemon": "^2.0.7",
"prettier": "^2.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
},
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.17.1",
"lodash": "^4.17.20",
"node-hid": "^2.1.1",
"winston": "^3.3.3"
}
}