-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
80 lines (80 loc) · 2.11 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
{
"name": "electron-hello-world",
"description": "Absolute bare minimum Hello World Electron app",
"version": "1.0.0",
"author": "Nate Goldman <[email protected]>",
"src": "src",
"test": "test",
"dist": "dist",
"mainInput": "FlicWebshopApp",
"mainOutput": "main",
"bugs": {
"url": "https://github.com/ngoldman/electron-hello-world/issues"
},
"dependencies": {
"events": "^1.0.2",
"flux": "^2.0.1",
"object-assign": "^2.0.0",
"react": "~0.12.2",
"react-loader": "^1.2.0"
},
"devDependencies": {
"autoprefixer-loader": "^1.2.0",
"babel": "^4.0.0",
"babel-loader": "^4.0.0",
"braintree-web": "^2.7.2",
"classnames": "^1.2.1",
"css-loader": "~0.9.0",
"csswring": "^3.0.4",
"electron-prebuilt": "^0.25.1",
"grunt": "~0.4.5",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-connect": "~0.8.0",
"grunt-contrib-copy": "~0.5.0",
"grunt-karma": "~0.8.3",
"grunt-open": "~0.2.3",
"grunt-webpack": "~1.0.8",
"image-webpack-loader": "^1.6.1",
"imagemin": "^3.2.0",
"jshint-loader": "~0.8.0",
"jsxhint-loader": "~0.2.0",
"karma": "~0.12.21",
"karma-chrome-launcher": "~0.1.4",
"karma-firefox-launcher": "~0.1.3",
"karma-jasmine": "~0.1.5",
"karma-phantomjs-launcher": "~0.1.3",
"karma-script-launcher": "~0.1.0",
"karma-webpack": "~1.2.2",
"keymirror": "^0.1.1",
"load-grunt-tasks": "~0.6.0",
"node-sass": "^3.1.1",
"react": "^0.13.1",
"react-hot-loader": "^1.0.7",
"sass-loader": "^0.4.2",
"style-loader": "~0.8.0",
"superagent": "^1.2.0",
"url-loader": "~0.5.5",
"webpack": "~1.4.3",
"webpack-dev-server": "~1.6.5"
},
"homepage": "https://github.com/ngoldman/electron-hello-world",
"keywords": [
"atom-shell",
"electron",
"example",
"hello",
"sample",
"world"
],
"license": "CC-0",
"main": "index.js",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/ngoldman/electron-hello-world.git"
},
"scripts": {
"start": "electron .",
"test": "echo \"Error: no test specified\" && exit 1"
}
}