-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "blackboard",
"description": "A tool used to explore your creativity, draw and sketch some ideas",
"version": "0.0.1",
"license": "MIT",
"main": "main.js",
"author": "Rafael Madureira dos Santos",
"scripts": {
"start": "node_modules/.bin/electron .",
"watch": "npm run build && node node_modules/gulp/bin/gulp.js watch",
"build": "node node_modules/gulp/bin/gulp.js build",
"build:prod": "node node_modules/gulp/bin/gulp.js build-prod",
"packager": "npm run build && node node_modules/gulp/bin/gulp.js packager && electron-packager ./packager myblackboard --platform=linux --arch=x64 --overwrite --out=release/"
},
"dependencies": {
"classnames": "^2.2.5",
"electron": "^1.6.7",
"electron-reload": "^1.1.0",
"font-awesome": "^4.7.0",
"fs-extra": "^3.0.1",
"mv": "^2.1.1",
"node-polyglot": "^2.2.2",
"react": "^15.5.4",
"react-dom": "^15.5.4",
"react-router": "3.0.0",
"react-tap-event-plugin": "^2.0.1"
},
"devDependencies": {
"babel-preset-es2015": "6.24.1",
"babel-preset-react": "6.24.1",
"babelify": "7.3.0",
"browserify": "^14.3.0",
"electron-packager": "^8.7.2",
"gulp": "3.9.1",
"gulp-clean": "^0.3.2",
"gulp-cssmin": "^0.1.7",
"gulp-exec": "^2.1.3",
"gulp-insert": "^0.5.0",
"gulp-less": "^3.3.0",
"gulp-rename": "^1.2.2",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^2.1.2",
"gulp-util": "^3.0.8",
"lodash": "^4.17.4",
"pathmodify": "^0.5.0",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "^3.9.0"
}
}