This repository has been archived by the owner on Jan 10, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
91 lines (91 loc) · 2.08 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
{
"name": "solidity-ide",
"version": "2.3.3",
"private": false,
"description": "A light and easy IDE for Solidity smart contract development.",
"author": "SystemGlitch",
"license": "MIT",
"main": "solc-server.js",
"bin": {
"solidity-ide": "./solc-server.js"
},
"bugs": {
"url": "https://github.com/System-Glitch/Solidity-IDE/issues"
},
"homepage": "https://github.com/System-Glitch/Solidity-IDE",
"keywords": [
"solidity",
"ide",
"ganache",
"ethereum",
"smart contract"
],
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build-local": "vue-cli-service build && node replace.js",
"lint": "vue-cli-service lint",
"server": "node solc-server.js -d",
"ide": "node solc-server.js"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.17.1",
"ganache-cli": "^6.10.1",
"minimist": "^1.2.5",
"solc": "^0.7.1"
},
"devDependencies": {
"@vue/cli": "^3.12.1",
"@vue/cli-plugin-babel": "^3.12.1",
"@vue/cli-plugin-eslint": "^3.12.1",
"@vue/cli-service": "^4.5.4",
"@vue/cli-service-global": "^4.5.4",
"ace-mode-solidity": "^0.1.1",
"axios": "^0.18.1",
"babel-eslint": "^10.1.0",
"bootstrap": "^4.5.2",
"bootstrap-vue": "^2.16.0",
"brace": "^0.11.1",
"core-js": "^2.6.11",
"es6-promise": "^4.2.8",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.2.3",
"node-sass": "^4.14.1",
"sass-loader": "^7.3.1",
"split.js": "^1.6.2",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.12",
"web3": "^1.2.11",
"webpack": "^4.44.1"
},
"eslintConfig": {
"root": true,
"env": {
"browser": true,
"node": true
},
"globals": {
"GlobalEvent": true,
"axios": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}