forked from ipfs/ipfs-desktop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.67 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.67 KB
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
{
"name": "ipfs-station",
"version": "1.0.0-alpha.1",
"description": "IPFS Native Application",
"main": "src/index.js",
"dependencies": {
"css-box-sizing-border-box": "^0.1.0",
"ipfs-api": "^9.0.0",
"ipfs-geoip": "^2.1.0",
"ipfs-logo": "github:ipfs/logo",
"ipfsd-ctl": "^0.16.0",
"menubar": "^5.0.0",
"minimist": "^1.2.0",
"multiaddr": "^2.0.2",
"node-notifier": "^4.3.1",
"normalize.css": "^5.0.0",
"radium": "^0.18.0",
"react": "^15.1.0",
"react-addons-css-transition-group": "^15.1.0",
"react-dnd": "^2.1.2",
"react-dnd-html5-backend": "^2.1.2",
"react-dom": "^15.1.0",
"react-widgets": "^3.2.0",
"winston": "^2.1.0"
},
"devDependencies": {
"babel-core": "^6.3.21",
"babel-eslint": "^7.0.0",
"babel-loader": "^6.2.0",
"babel-plugin-array-includes": "^2.0.3",
"babel-plugin-react-transform": "^2.0.2",
"babel-plugin-transform-inline-environment-variables": "^6.3.13",
"babel-polyfill": "^6.5.0",
"babel-preset-es2015": "^6.3.13",
"babel-preset-react": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"caniuse-api": "^1.4.1",
"conventional-changelog": "^1.1.0",
"conventional-github-releaser": "^1.1.0",
"css-loader": "^0.25.0",
"devtron": "^1.3.0",
"electron-debug": "^1.0.0",
"electron-packager": "8.1.0",
"electron-prebuilt-compile": "^1.3.7",
"eslint": "3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-config-standard-react": "^4.2.0",
"eslint-plugin-promise": "^2.0.0",
"eslint-plugin-react": "^6.3.0",
"eslint-plugin-standard": "^2.0.0",
"longjohn": "^0.2.11",
"pre-commit": "^1.1.1",
"react-transform-catch-errors": "^1.0.0",
"react-transform-hmr": "^1.0.0",
"redbox-react": "^1.0.5",
"rimraf": "^2.4.3",
"shelljs": "^0.7.0"
},
"scripts": {
"start": "electron src/index.js",
"test": "npm run lint",
"lint": "eslint .",
"dist": "./pkg.js",
"dist-all": "./pkg.js --all",
"start:prod": "NODE_ENV=production electron src/index.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -w",
"changelog:github": "conventional-github-releaser -p angular"
},
"pre-commit": [
"lint"
],
"keywords": [
"ipfs",
"electron",
"station"
],
"repository": {
"type": "git",
"url": "https://github.com/ipfs/station"
},
"authors": [
"Kristoffer Ström <kristoffer@rymdkoloni.se>",
"David Dias <daviddias@ipfs.io>",
"Juan Benet <juan@ipfs.io>",
"Friedel Ziegelmayer <dignifiedquire@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/station/issues"
},
"homepage": "https://github.com/ipfs/station"
}