-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
80 lines (80 loc) · 2.64 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": "farm",
"version": "1.0.1",
"description": "Runtime-editable elm.",
"main": "dist/electron.js",
"repository": "https://github.com/inkandswitch/farm",
"author": "Jeff Peterson <[email protected]>, Peter van Hardenberg <[email protected]>, Matt Tognetti <[email protected]>",
"license": "BSD",
"private": true,
"scripts": {
"start": "yarn && yarn build && electron .",
"build": "cross-env TS_NODE_CACHE_DIRECTORY=.ts-cache webpack",
"app": "yarn build && yarn start-app",
"types": "./bin/types.sh",
"farm": "yarn build && cross-env REPO_ROOT=./.data/bots node ./dist/farm.js",
"bot": "yarn farm bot"
},
"devDependencies": {
"@types/bs58": "^3.0.30",
"@types/chrome": "^0.0.78",
"@types/commander": "^2.12.2",
"@types/copy-webpack-plugin": "^4.4.2",
"@types/debug": "^0.0.31",
"@types/electron": "^1.6.10",
"@types/express": "^4.16.0",
"@types/hard-source-webpack-plugin": "^1.0.0",
"@types/html-webpack-plugin": "^3.2.0",
"@types/lodash": "^4.14.118",
"@types/mime-types": "^2.1.0",
"@types/node": "^10.12.0",
"@types/proper-lockfile": "^3.0.0",
"@types/webpack": "^4.4.17",
"@types/webpack-dev-middleware": "^2.0.2",
"@types/webpack-node-externals": "^1.6.3",
"copy-webpack-plugin": "^4.6.0",
"cross-env": "^5.2.0",
"electron": "^3.0.7",
"electron-rebuild": "^1.8.2",
"elm-webpack-loader": "^5.0.0",
"express": "^4.16.4",
"hard-source-webpack-plugin": "^0.13.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.14.3",
"prettier-plugin-elm": "^0.4.1",
"ts-loader": "^5.2.2",
"ts-node": "^7.0.1",
"typescript": "^3.1.3",
"webpack": "^4.23.1",
"webpack-cli": "^3.1.2",
"webpack-dev-middleware": "^3.4.0",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"@types/text-encoding": "^0.0.35",
"automerge": "^0.9.2",
"bs58": "^4.0.1",
"commander": "^2.19.0",
"dat-swarm-defaults": "^1.0.1",
"debug": "^4.1.0",
"discovery-cloud-client": "github:inkandswitch/discovery-cloud-client",
"discovery-swarm": "^5.1.2",
"electron-context-menu": "^0.10.1",
"elm": "^0.19.0-bugfix2",
"elm-format": "^0.8.1",
"hypercore": "^6.21.0",
"hypermerge": "github:automerge/hypermerge#fork",
"lodash": "^4.17.11",
"mime-types": "^2.1.21",
"node-elm-compiler": "^5.0.1",
"odiff": "github:inkandswitch/odiff",
"proper-lockfile": "^3.2.0",
"pseudo-worker": "^1.2.0",
"random-access-file": "^2.0.1",
"random-access-memory": "^3.0.0",
"text-encoding": "^0.7.0",
"tiny-worker": "^2.1.2",
"utp-native": "^2.1.3",
"xmlhttprequest": "^1.8.0"
}
}