-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
82 lines (82 loc) · 2.07 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
{
"name": "create-evm-app",
"version": "0.1.2",
"description": "Features-rich scaffold fullstack dApp on EVM-based Blockchains",
"main": "index.js",
"bin": "index.js",
"engines": {
"node": ">=16",
"pnpm": ">=6"
},
"files": [
"templates",
"dist/**/*.js"
],
"scripts": {
"commit": "git-cz",
"start": "pnpm build && node index.js",
"build": "tsc",
"test": "pnpm build && jest --runInBand",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"release": "pnpm build && release-it",
"prepack": "pnpm build",
"postinstall": "husky install"
},
"keywords": [
"scaffold",
"evm-based",
"ethereum",
"ether",
"solidity",
"hardhat",
"foundry",
"react",
"smart-contract",
"web3",
"blockchain"
],
"author": "hangleang",
"repository": "https://github.com/hangleang/create-evm-app.git",
"bugs": "https://github.com/hangleang/create-evm-app/issues",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^9.4.0",
"cross-spawn": "^7.0.3",
"mixpanel": "^0.16.0",
"ncp": "^2.0.0",
"prompts": "^2.4.0",
"rimraf": "^3.0.2",
"semver": "^7.3.7",
"yaml": "^2.1.3"
},
"devDependencies": {
"@commitlint/cli": "^17.0.1",
"@commitlint/config-conventional": "^17.0.0",
"@release-it/conventional-changelog": "^5.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/jest": "^28.0.7",
"@types/ncp": "^2.0.5",
"@types/node": "^18.6.1",
"@types/node-dir": "^0.0.34",
"@types/prompts": "^2.0.14",
"@types/rimraf": "^3.0.2",
"@types/semver": "^7.3.10",
"@typescript-eslint/eslint-plugin": "^5.37.0",
"@typescript-eslint/parser": "^5.37.0",
"commitizen": "^4.2.5",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.20.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"husky": "^8.0.1",
"jest": "^28.0.7",
"lint-staged": "^13.0.3",
"node-dir": "^0.1.17",
"prettier": "^2.7.1",
"release-it": "^15.0.0",
"ts-jest": "^28.0.7",
"typescript": "^4.8.4"
}
}