-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.06 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
{
"name": "codepicnic-desktop",
"version": "0.0.1",
"description": "Desktop client for CodePicnic. List and run your consoles without open your browser.",
"main": "main.js",
"scripts": {
"start": "electron main.js",
"build": "browserify app/index.js -t babelify -o assets/js/index.js --debug --verbose",
"watch": "watchify app/index.js -t babelify -o assets/js/index.js --debug --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codepicnic/codepicnic-desktop.git"
},
"author": "Gustavo Leon <gustavo@codepicnic.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/codepicnic/codepicnic-desktop/issues"
},
"homepage": "https://github.com/codepicnic/codepicnic-desktop#readme",
"devDependencies": {
"babel-preset-es2015": "^6.9.0",
"babel-preset-react": "^6.5.0",
"babelify": "^7.3.0",
"electron-prebuilt": "^1.1.1",
"electron-reload": "^0.3.0"
},
"dependencies": {
"codepicnic": "0.0.1",
"moment": "^2.13.0",
"react": "^15.1.0",
"react-dom": "^15.1.0"
}
}