-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
54 lines (54 loc) · 1.47 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
{
"name": "@polygonlabs/dapp-launchpad",
"version": "1.0.1",
"description": "CLI tool to initialise a fully-integrated EVM-compatible dApp, create a development environment, and deploy everything to production.",
"license": "MIT",
"bin": {
"dapp-launchpad": "./bin/cli.js"
},
"type": "module",
"scripts": {
"postinstall": "patch-package",
"build": "rollup -c",
"install-global": "npm i -g --force",
"dev": "rollup --watch --watch.onEnd 'npm run install-global' -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/0xpolygon/dapp-launchpad.git"
},
"keywords": [
"dapp launchpad",
"eth scaffold",
"dapp scaffold",
"dapp toolkit",
"web3 project template",
"web3 project starter",
"polygon"
],
"bugs": {
"url": "https://github.com/0xPolygon/dapp-launchpad/issues"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^11.1.0",
"ethers": "6.8.1",
"node-fetch": "^3.3.2",
"shelljs": "^0.8.5",
"chokidar": "^3.5.3",
"dotenv": "^16.3.1",
"patch-package": "^8.0.0",
"postinstall-postinstall": "^2.1.0"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-json": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"@types/shelljs": "^0.8.14",
"rollup": "^3.29.4",
"rollup-plugin-add-shebang": "^0.3.1",
"typescript": "^5.2.2"
}
}