-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
50 lines (50 loc) · 1.29 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
46
47
48
49
50
{
"name": "wiz-spotify-connected",
"version": "1.1.0",
"description": "A service to dance 😉 (change) your Wiz lights to playing Spotify music.",
"keywords": [
"Spotify",
"Wiz",
"Connected",
"IoT",
"Philips",
"Lights"
],
"license": "MIT",
"author": "Sandarsh Sridhar",
"type": "module",
"main": "index.js",
"scripts": {
"build": "rimraf dist/ && tsc",
"dev": "concurrently \"npx tsc --watch\" \"nodemon -q dist/app.js\"",
"lint": "eslint . --fix --ext .js,.ts",
"prepare": "sort-package-json && npm run build",
"start": "eslint && rimraf dist/ && tsc && node dist/app.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"class-transformer": "0.5.1",
"dotenv": "16.3.1",
"express": "4.18.2",
"got": "13.0.0",
"inversify": "6.0.1",
"node-cache": "5.1.2",
"query-string": "8.1.0",
"reflect-metadata": "0.1.13"
},
"devDependencies": {
"@types/express": "4.17.17",
"@types/node": "20.5.7",
"@typescript-eslint/eslint-plugin": "6.5.0",
"@typescript-eslint/parser": "6.5.0",
"eslint": "8.48.0",
"nodemon": "3.0.1",
"rimraf": "5.0.1",
"sort-package-json": "2.5.1",
"typescript": "5.2.2"
},
"engines": {
"node": ">=18",
"npm": ">=9"
}
}