-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 961 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
32
33
34
{
"name": "hue",
"version": "0.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "concurrently \"npm run start:app\" \"npm run start:shell\"",
"start:app": "webpack-dev-server --config webpack.config.js",
"build:shell": "cd shell && tsc",
"start:shell": "npm run build:shell && electron dist/shell/index.js"
},
"author": "James Birtles <[email protected]>",
"license": "MIT",
"devDependencies": {
"awesome-typescript-loader": "^3.1.3",
"boilerpack": "^0.1.0",
"concurrently": "^3.4.0",
"copy-webpack-plugin": "^4.0.1",
"css-loader": "^0.28.4",
"html-webpack-plugin": "^2.28.0",
"node-sass": "^4.5.3",
"sass-loader": "^6.0.5",
"style-loader": "^0.18.1",
"typescript": "^2.3.4",
"webpack": "^2.6.1",
"webpack-dev-server": "^2.4.5"
},
"dependencies": {
"core-js": "^2.4.1",
"electron": "^1.6.10",
"preact": "^8.1.0",
"tslib": "^1.7.1"
}
}