forked from dark64/remixd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.35 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
{
"name": "remixd",
"version": "0.1.8-alpha.14",
"description": "remix server: allow accessing file system from remix.ethereum.org and start a dev environment (see help section)",
"main": "./src/index.js",
"bin": {
"remixd": "./bin/remixd"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "npm run update-origins && ./bin/remixd",
"npip": "npip",
"install-python-deps": "npip install",
"prepublish": "npm run install-python-deps",
"update-origins": "node bin/getOrigins.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ethereum/remixd.git"
},
"keywords": [
"remix",
"ide",
"ethereum",
"solidity"
],
"author": "cpp ethereum team",
"license": "MIT",
"bugs": {
"url": "https://github.com/ethereum/remixd/issues"
},
"homepage": "https://github.com/ethereum/remixd#readme",
"dependencies": {
"axios": "^0.19.0",
"chokidar": "^2.0.2",
"commander": "^2.9.0",
"cors": "2.8.5",
"dotenv": "^8.2.0",
"express": "4.17.1",
"express-ws": "^4.0.0",
"fs-extra": "^3.0.1",
"isbinaryfile": "^3.0.2",
"lerna": "^2.9.0",
"nopy": "^0.2.6",
"stdout": "0.0.3",
"watch": "^1.0.2",
"ws": "^7.2.0"
},
"python": {
"execPath": "python3",
"dependencies": {
"vyper": ">=0.1.0b3"
}
}
}