forked from scaffold-eth/scaffold-eth-2
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.9 KB
/
Copy pathpackage.json
File metadata and controls
69 lines (69 loc) · 1.9 KB
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
{
"name": "create-eth",
"version": "2.0.21",
"description": "Create a Scaffold-ETH-2 app",
"repository": {
"type": "git",
"url": "https://github.com/scaffold-eth/create-eth.git"
},
"main": "dist/cli.js",
"type": "module",
"bin": "bin/create-dapp-se2.js",
"scripts": {
"build": "rollup -c rollup.config.js",
"build:dev": "yarn build && rollup -c src/dev/rollup.config.js",
"create-extension": "node dist/create-extension/create-extension.js",
"dev": "rollup -c rollup.config.js --watch",
"cli": "node bin/create-dapp-se2.js",
"lint": "eslint .",
"format": "prettier --write .",
"test": "echo \"Error: no test specified\" && exit 1",
"type-check": "tsc --noEmit",
"changeset:release": "yarn build && changeset publish"
},
"keywords": [
"cli",
"ethereum",
"scaffold-eth 2",
"wagmi",
"hardhat",
"foundry",
"viem",
"rainbowkit"
],
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-typescript": "^12.3.0",
"@types/ncp": "^2.0.8",
"@types/node": "^22.19.19",
"@types/semver": "^7.7.1",
"@types/validate-npm-package-name": "^4.0.2",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.5",
"lefthook": "^2.1.8",
"prettier": "^3.8.3",
"rollup": "^4.60.4",
"rollup-plugin-auto-external": "^2.0.0",
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.60.0",
"wait-on": "^9.0.10"
},
"dependencies": {
"@changesets/cli": "^2.31.0",
"@fastify/deepmerge": "^3.2.1",
"@inquirer/prompts": "^8.5.0",
"arg": "^5.0.2",
"chalk": "^5.6.2",
"execa": "^9.6.1",
"listr2": "^10.2.1",
"merge-packages": "^0.1.6",
"ncp": "^2.0.0",
"semver": "^7.8.1",
"validate-npm-package-name": "^7.0.2"
},
"packageManager": "yarn@4.16.0"
}