-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 751 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 751 Bytes
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": "esp-light-strip",
"version": "1.0.0",
"description": "Control light strips using multiple esp8266's",
"main": "index.js",
"scripts": {
"build": "tsc",
"dev": "ts-node ./src/server.ts",
"prestart": "tsc",
"start": "nodemon ./dist/server.js",
"prod": "npm run build && npm run start",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.17.0",
"@types/express": "^4.16.0",
"@types/node": "^10.5.7",
"nodemon": "^1.18.3",
"ts-node": "^7.0.0",
"typescript": "^3.0.1"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.16.3",
"mqtt": "^2.18.8"
}
}