-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
81 lines (81 loc) · 2.35 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "SKQW",
"version": "1.0.0-beta.2",
"description": "Audio visualizations in JavaScript",
"homepage": "https://github.com/michaelbromley/skqw",
"main": "app/index.js",
"scripts": {
"electron:rebuild": "electron-rebuild -m src/",
"app:watch": "webpack --watch --progress --profile",
"app:build": "rimraf app && webpack --progress --profile",
"app:build-aot": "rimraf app && webpack --progress --profile --env aot",
"electron:start": ".\\node_modules\\electron\\dist\\electron.exe ./app/index.js",
"dist:win64": "build --platform win32 --arch x64",
"dist:osx": "build --osx"
},
"repository": {
"type": "git",
"url": "http://github.com/michaelbromley/skqw"
},
"bugs": {
"url": "https://github.com/michaelbromley/skqw/issues"
},
"devDependencies": {
"@angular/animations": "^4.0.2",
"@angular/common": "^4.0.2",
"@angular/compiler": "^4.0.2",
"@angular/compiler-cli": "^4.0.2",
"@angular/core": "^4.0.2",
"@angular/forms": "^4.0.2",
"@angular/http": "^4.0.2",
"@angular/material": "2.0.0-beta.3",
"@angular/platform-browser": "^4.0.2",
"@angular/platform-browser-dynamic": "^4.0.2",
"@angular/platform-server": "^4.0.2",
"@types/node": "^7.0.12",
"angular2-template-loader": "^0.6.0",
"copy-webpack-plugin": "^3.0.1",
"css-loader": "^0.23.1",
"electron": "^1.6.6",
"electron-builder": "17.8.0",
"electron-debug": "^1.0.1",
"electron-rebuild": "1.5.11",
"es6-shim": "^0.35.0",
"file-loader": "^0.8.5",
"fourier-transform": "^1.0.1",
"hammerjs": "^2.0.8",
"html-loader": "^0.4.3",
"html-webpack-plugin": "^2.22.0",
"lowdb": "^0.14.0",
"node-sass": "^3.7.0",
"perfect-scrollbar": "^0.6.16",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.9",
"rimraf": "^2.5.2",
"rxjs": "5.0.3",
"sass-loader": "^3.2.0",
"style-loader": "^0.13.1",
"svg-inline-loader": "^0.4.1",
"three": "^0.83.0",
"ts-loader": "0.9.1",
"typescript": "2.1.4",
"webpack": "^2.3.3",
"zone.js": "^0.8.4"
},
"build": {
"appId": "skqw.skqw",
"files": [
"**/*",
"../visualizations/**/*"
],
"asar": false,
"mac": {
"category": "public.app-category.entertainment"
},
"win": {
"target": "nsis",
"icon": "build/icon.ico"
},
"nodeGypRebuild": false
}
}