-
-
Notifications
You must be signed in to change notification settings - Fork 503
/
package.json
109 lines (109 loc) · 3.19 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "create-eth-app",
"description": "Create Ethereum-powered apps with one command",
"version": "1.8.3",
"bin": "./dist/index.js",
"bugs": {
"url": "https://github.com/paulrberg/create-eth-app/issues"
},
"contributors": [
{
"name": "Paul Razvan Berg",
"url": "https://github.com/paulrberg"
},
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
}
],
"dependencies": {
"chalk": "4.1.2",
"commander": "^9.0.0",
"fs-extra": "^10.0.1",
"got": "11.8.3",
"handlebars": "^4.7.7",
"promisepipe": "^3.0.0",
"prompts": "^2.4.2",
"tar": "^6.1.11",
"update-check": "^1.5.4",
"validate-npm-package-name": "^3.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.3",
"@commitlint/config-conventional": "^16.2.4",
"@commitlint/config-lerna-scopes": "^16.2.4",
"@jest/globals": "^29",
"@octokit/request": "^5.6.3",
"@trivago/prettier-plugin-sort-imports": "^3.4.0",
"@types/cross-spawn": "^6.0.3",
"@types/fs-extra": "^9.0.13",
"@types/got": "9.6.12",
"@types/jest": "^29",
"@types/jest-when": "^3.5.3",
"@types/node": "^17.0.21",
"@types/prompts": "2.0.14",
"@types/tar": "6.1.1",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"@vercel/ncc": "^0.33.4",
"commitizen": "^4.3.0",
"copyfiles": "^2.4.1",
"cross-spawn": "^7.0.3",
"dir-compare": "^4.2.0",
"eslint": "^8.50.0",
"eslint-config-prettier": "^8.10.0",
"husky": "^7.0.4",
"jest": "^29",
"jest-when": "^3.6.0",
"lerna": "^4.0.0",
"lint-staged": "^12.5.0",
"pinst": "^3.0.0",
"prettier": "^2.8.8",
"shx": "^0.3.4",
"tempy": "1.0.1",
"ts-jest": "^29",
"ts-node": "^10.9.1",
"typescript": "~4.6.4"
},
"engines": {
"node": ">=16.0.0"
},
"files": [
"/dist",
"CHANGELOG.md"
],
"homepage": "https://github.com/paulrberg/create-eth-app#readme",
"keywords": [
"ethers",
"ethereum",
"react",
"vue",
"web3",
"yarn"
],
"license": "MIT",
"main": "./dist/index.js",
"packageManager": "[email protected]",
"repository": {
"name": "paulrberg/create-eth-app",
"type": "git",
"url": "https://github.com/paulrberg/create-eth-app"
},
"scripts": {
"build": "ncc build ./src/index.ts --out dist/ && yarn copy-files",
"clean": "shx rm -rf ./coverage ./dist",
"copy-files": "copyfiles --up 1 \"src/gitignore\" dist/",
"lint": "yarn run lint:ts && yarn run prettier:check",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .",
"postinstall": "husky install",
"postpublish": "pinst --enable",
"prepack": "yarn build",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config .prettierrc.yaml --write \"**/*.{js,jsx,json,md,sol,ts,tsx,yaml,yml}\"",
"prettier:check": "prettier --check --config .prettierrc.yaml \"**/*.{js,json,jsx,md,sol,ts,tsx,yaml,yml}\"",
"test": "yarn run test:unit && yarn run test:integration",
"test:integration": "jest test/integration",
"test:unit": "jest test/unit",
"watch": "ncc build ./src/index.ts --out dist/ --watch"
}
}