-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 1.19 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
{
"name": "iota-terminal",
"version": "1.0.0",
"description": "A payment terminal for accepting iota payments in retail stores",
"main": "index.js",
"scripts": {
"start": "npm run updater && npm run build-polymer && forever index.js",
"dev": "npm run watch-server & npm run watch-interface",
"watch-server": "npx nodemon ./index.js --ignore \"./build\" --ignore \"./interface\" -e js",
"watch-interface": "npx nodemon --exec \"npm run build-polymer\" --watch \"./interface\" -e js,html",
"build-polymer": "npx polymer build --entrypoint ./interface/index.html --bundle",
"updater": "sh ./updater.sh && npm install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tangleMesh/iota-terminal.git"
},
"keywords": [
"iota",
"terminal",
"tangleMesh"
],
"author": "Jeremias Ehnle",
"license": "ISC",
"bugs": {
"url": "https://github.com/tangleMesh/iota-terminal/issues"
},
"homepage": "https://github.com/tangleMesh/iota-terminal#readme",
"dependencies": {
"@vaadin/router": "^1.6.0",
"express": "^4.17.1",
"forever": "^2.0.0",
"lit-element": "^2.2.1",
"nodemon": "^2.0.2",
"polymer-cli": "^1.9.11"
}
}