-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
118 lines (118 loc) · 3 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
{
"name": "flux-studio",
"productName": "FLUX Studio",
"version": "1.3.5",
"author": {
"name": "FLUX Inc.",
"email": "support@flux3dp.com"
},
"description": "FLUX Studio",
"private": true,
"main": "electron-main.js",
"dependencies": {
"bufferpack": "^0.0.6",
"cropperjs": "^1.4.1",
"font-manager": "^0.3.0",
"fontkit": "^1.7.7",
"jquery": "^1.11.0",
"jsdom-global": "^1.6.2",
"nan": "^2.4.0",
"socket.io-client": "^1.4.6",
"squirejs": "^0.2.1",
"text-to-svg": "jeffontheground/text-to-svg#e4fb3dc1ac9c8e5a2440373e7e018f07653ad574",
"ws": "^7.1.0"
},
"devDependencies": {
"ajv": "^5.5.2",
"babel-core": "^6.4.5",
"babel-eslint": "^8.2.1",
"babel-loader": "^6.2.1",
"babel-plugin-transform-react-jsx": "^6.4.0",
"babel-preset-es2015": "~6.9.0",
"babel-preset-react": "~6.5.0",
"babel-preset-stage-0": "^6.3.13",
"babel-preset-stage-2": "^6.3.13",
"chai": "3.5.0",
"electron": "5.0.6",
"electron-builder": "^21.1.1",
"electron-publisher-s3": "^19.53.1",
"electron-rebuild": "^1.8.5",
"electron-reload": "~1.1.0",
"eslint": "^4.9.0",
"eslint-plugin-react": "^7.4.0",
"expect": "^1.14.0",
"gulp": "^4.0.2",
"gulp-babel": "~6.1.2",
"gulp-clean-css": "~2.0.10",
"gulp-exec": "~2.1.2",
"gulp-mocha": "~2.2.0",
"gulp-react": "~3.1.0",
"gulp-sass": "^4.0.2",
"gulp-sourcemaps": "~1.6.0",
"gulp-uglify": "~1.5.4",
"gulp-webserver": "~0.9.1",
"jsdom": "~7.2.2",
"mocha": "^2.3.4",
"mocha-jsdom": "~1.0.0",
"pump": "~1.0.1",
"q": "~1.4.1",
"react": "^0.14.7",
"react-addons-test-utils": "^0.14.7",
"requirejs": "~2.1.22",
"style-loader": "^0.13.0",
"webpack": "1.13.1"
},
"scripts": {
"test": "mocha '_test/unit/slicer.js' --compilers js:babel-core/register",
"start": "electron .",
"start-server": "electron . --server",
"postinstall": "electron-rebuild",
"pack": "electron-builder --dir",
"dist": "electron-builder"
},
"build": {
"appId": "com.flux3dp.flux-studio",
"extraResources": [
"backend"
],
"files": [
"!**/*.{jsx,scss}"
],
"publish": [
{
"provider": "s3",
"bucket": "${env.PUBLISH_BUCKET}",
"path": "${os}${env.PUBLISH_PATH}"
}
],
"mac": {
"category": "com.flux3dp.flux-studio",
"target": "dmg",
"icon": "public/logo.icns"
},
"linux": {
"category": "Graphics",
"description": "FLUX Studio",
"vendor": "FLUX Inc.",
"target": "deb",
"icon": "app-icons"
},
"win": {
"icon": "app-icons/win-icon.ico",
"certificateSubjectName": "FLUX TECHNOLOGY INC.",
"publisherName": "FLUX Inc."
},
"dmg": {
"artifactName": "FLUX Studio ${version}.${ext}"
},
"deb": {
"depends": [
"libfontconfig1-dev"
]
},
"nsis": {
"include": "win-install.nsh",
"artifactName": "FLUX Studio Installer ${version}.${ext}"
}
}
}