-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.14 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
{
"name": "tvremote",
"version": "1.0.0",
"description": "a express base remote",
"main": "src/api/index.js",
"dependencies": {
"axios": "^0.21.1",
"basic-auth": "^2.0.1",
"express": "^4.17.1",
"helmet": "^4.3.1",
"js-yaml": "^3.14.1",
"lodash": "^4.17.20",
"xml2js": "^0.4.23"
},
"devDependencies": {
"debug": "^4.3.1",
"node-dev": "^6.2.0"
},
"scripts": {
"start": "node src/api/index.js",
"dev": "node-dev --no-deps --respawn src/api/index.js",
"server": "node src/api/index.js",
"client": "cd client && npm run start",
"build:client": "cd client && npm run build",
"iall": "npm i && cd client && npm i",
"startboth": "npm run server & npm run client",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scramble45/TVPiRemote.git"
},
"keywords": [
"tv"
],
"author": "Rowan Hamilton",
"license": "ISC",
"bugs": {
"url": "https://github.com/scramble45/TVPiRemote/issues"
},
"homepage": "https://github.com/scramble45/TVPiRemote#readme",
"engines": {
"node": "~14.15.1"
}
}