-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
31 lines (31 loc) · 922 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
{
"name": "simple-timebox-evo-api",
"version": "1.0.0",
"description": "Simple API to control your timebox Evo",
"main": "index.js",
"scripts": {
"dev": "PORT='8000' TIMEBOX_ADDRESS='11:75:58:5D:C0:11' nodemon --watch 'src/**/*.ts' --exec 'ts-node' src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"format": "prettier 'src/**/*.{js,jsx,ts,tsx}' --write"
},
"author": "Christian Panadero Martinez",
"license": "MIT",
"devDependencies": {
"@types/express": "^4.17.6",
"@types/node": "^13.13.4",
"@types/swagger-ui-express": "^4.1.2",
"nodemon": "^2.0.3",
"prettier": "^2.0.5",
"ts-node": "^8.10.1",
"typescript": "^3.8.3"
},
"dependencies": {
"bluetooth-serial-port": "^2.2.7",
"express": "^4.17.1",
"fp-ts": "^2.5.4",
"fp-ts-contrib": "^0.1.15",
"node-divoom-timebox-evo": "^0.3.0",
"swagger-ui-express": "^4.1.4"
}
}