-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
95 lines (95 loc) · 2.88 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
{
"name": "hypha-desktop",
"version": "0.1.1",
"productName": "Hypha",
"description": "Hypha Desktop Application",
"main": "out/index.js",
"scripts": {
"build:pre": "npm run build:module; npm run build:copy; npm run build:ui",
"build:copy": "babel src --out-dir out --copy-files; shx rm -rf out/ui",
"build:module": "npm install .",
"build:ui": "webpack --env production --colors --config webpack.ui.config.js",
"build:electron": "electron-builder",
"clean:ui": "shx rm -rf assets/ui/",
"dev:electron": "wait-on assets/ui/index.js; cross-env NODE_ENV=development electron -r @babel/register src/index.js",
"dev:ui": "webpack --env development --colors --config webpack.ui.config.js",
"format:ui": "prettier --write \"src/ui/**/*.{js,json}\"",
"start:dev": "NODE_ENV=development npm run clean:ui; concurrently \"npm:dev:ui\" \"npm:dev:electron\""
},
"husky": {
"hooks": {
"pre-commit": "npm run format:ui"
}
},
"keywords": [
"app",
"desktop",
"ipfs"
],
"repository": {
"type": "git",
"url": "https://github.com/hypha-publication/hypha-desktop"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/hypha-publication/hypha-desktop/issues"
},
"devDependencies": {
"@babel/cli": "^7.5.0",
"@babel/core": "^7.5.4",
"@babel/plugin-transform-runtime": "^7.5.0",
"@babel/preset-env": "^7.5.4",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.4.4",
"@svgr/cli": "^4.3.1",
"@svgr/webpack": "^4.3.2",
"@types/react": "^16.8.23",
"@types/react-dom": "^16.8.4",
"babel-loader": "^8.0.6",
"concurrently": "^4.1.1",
"copy-webpack-plugin": "^5.0.3",
"cross-env": "^5.2.0",
"css-loader": "^3.0.0",
"electron": "^5.0.6",
"electron-builder": "^21.2.0",
"electron-reload": "^1.4.1",
"html-webpack-plugin": "^3.2.0",
"husky": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^1.18.2",
"shx": "^0.3.2",
"style-loader": "^0.23.1",
"wait-on": "^3.3.0",
"webpack": "^4.35.3",
"webpack-build-notifier": "^1.0.3",
"webpack-cli": "^3.3.6"
},
"dependencies": {
"@apollo/react-hooks": "^3.1.0",
"@babel/runtime": "^7.5.4",
"apollo-cache-inmemory": "^1.6.3",
"apollo-client": "^2.6.4",
"apollo-link-http": "^1.5.16",
"cheerio": "^1.0.0-rc.3",
"classnames": "^2.2.6",
"electron-store": "^4.0.0",
"file-type": "^12.0.1",
"fix-path": "^2.1.0",
"go-ipfs-dep": "0.4.21",
"graphql": "^14.5.4",
"graphql-tag": "^2.10.1",
"graphql-tools": "^4.0.5",
"graphql-transport-electron": "^1.0.1",
"ipfs-http-client": "^33.1.0",
"ipfsd-ctl": "^0.44.1",
"is-ipfs": "^0.6.1",
"isomorphic-fetch": "^2.2.1",
"iterall": "^1.2.2",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-feather": "^2.0.3"
}
}