-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
executable file
·47 lines (47 loc) · 1.41 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
{
"title": "BEP20 Token Generator",
"name": "bep20-generator",
"version": "1.0.0",
"description": "Easily deploy Smart Contract for a Standard, Capped, Mintable, Burnable BEP20 Token.",
"scripts": {
"lint": "eslint .vuepress",
"lint:fix": "eslint .vuepress --fix",
"dev": "vuepress dev",
"build": "vuepress build",
"deploy": "vuepress build && sh scripts/deploy.sh"
},
"keywords": [],
"bugs": {
"url": "https://github.com/DigiSwap-Core/bep20-generator/issues"
},
"license": "MIT",
"author": "Vittorio Minacori (https://github.com/vittominacori)",
"repository": {
"type": "git",
"url": "https://github.com/DigiSwap-Core/bep20-generator.git"
},
"dependencies": {
"@saeris/vue-spinners": "^1.0.8",
"bootstrap-vue": "^2.21.2",
"vee-validate": "^3.4.5",
"vue-carousel": "^0.18.0",
"vue2-smooth-scroll": "^1.5.0",
"web3": "^1.3.4"
},
"devDependencies": {
"@vuepress/plugin-google-analytics": "^1.8.2",
"babel-eslint": "^10.1.0",
"eslint": "^7.20.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.6.0",
"node-sass": "^5.0.0",
"sass-loader": "^10.1.1",
"vue-eslint-parser": "^7.5.0",
"vuepress": "^1.8.2",
"vuepress-plugin-facebook-pixel": "^1.0.0"
}
}