-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.6 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.6 KB
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": "tradfri-control-panel",
"productName": "Tradfri Control Panel",
"version": "0.0.1",
"description": "A control panel for IKEA Trådfri lightbulbs",
"main": "main.js",
"repository": "https://github.com/franzwilhelm/tradfri-control-panel",
"author": "franzwilhelm",
"license": "gpl-3.0",
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/plugin-proposal-class-properties": "7.5.5",
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"@fortawesome/fontawesome-free": "^5.11.2",
"concurrently": "^5.0.0",
"electron": "^3.0.0",
"electron-builder": "^21.2.0",
"electron-packager": "^14.0.6",
"electron-reload": "^1.5.0",
"eslint": "^6.5.1",
"eslint-plugin-svelte3": "^2.7.3",
"node-sass": "^4.12.0",
"npm-run-all": "^4.1.5",
"rollup": "^1.24.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-eslint": "^7.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-livereload": "^1.0.4",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-svelte": "^5.1.0",
"rollup-plugin-terser": "^5.1.2",
"sirv-cli": "^0.4.4",
"svelte": "^3.12.1"
},
"scripts": {
"build": "rollup -c",
"autobuild": "rollup -c -w",
"dev": "concurrently \"run-p start:dev autobuild\" \"electron .\"",
"start": "sirv public",
"start:dev": "sirv public --dev",
"lint": "eslint --ext .js,.svelte src"
},
"dependencies": {
"@babel/runtime": "^7.6.3",
"node-tradfri-client": "^2.0.1"
}
}