forked from WalletConnect/create-eth-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.15 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.15 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
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
110
111
{
"name": "create-eth-app",
"description": "Create Ethereum-powered apps with one command",
"version": "1.7.1",
"bin": "./dist/index.js",
"bugs": {
"url": "https://github.com/paulrberg/create-eth-app/issues"
},
"contributors": [
{
"name": "Paul Razvan Berg",
"url": "https://paulrberg.com"
},
{
"name": "Tom French",
"url": "https://github.com/tomafrench"
}
],
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@commitlint/config-lerna-scopes": "^13.1.0",
"@jest/globals": "^27.2.0",
"@octokit/request": "^5.6.1",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.12",
"@types/got": "9.6.12",
"@types/jest": "^27.0.1",
"@types/jest-when": "^2.7.3",
"@types/node": "^16.9.1",
"@types/prompts": "2.0.14",
"@types/tar": "4.0.5",
"@typescript-eslint/eslint-plugin": "^4.31.0",
"@typescript-eslint/parser": "^4.31.0",
"@vercel/ncc": "^0.31.1",
"chalk": "^4.1.2",
"commander": "^8.2.0",
"commitizen": "^4.2.4",
"cross-spawn": "^7.0.3",
"dir-compare": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"fs-extra": "^10.0.0",
"got": "^11.8.2",
"handlebars": "^4.7.7",
"husky": "^7.0.2",
"import-sort-parser-typescript": "^6.0.0",
"import-sort-style-module": "^6.0.0",
"jest": "27.2.0",
"jest-when": "^3.3.1",
"lerna": "^4.0.0",
"lint-staged": "^11.1.2",
"pinst": "^2.1.6",
"prettier": "^2.4.0",
"promisepipe": "^3.0.0",
"prompts": "^2.4.1",
"shx": "^0.3.3",
"tar": "^6.1.11",
"tempy": "1.0.1",
"ts-jest": "27.0.5",
"typescript": "^4.4.3",
"update-check": "^1.5.4",
"url-exist": "2.0.2",
"validate-npm-package-name": "^3.0.0"
},
"files": [
"/dist",
"CHANGELOG.md"
],
"homepage": "https://github.com/paulrberg/create-eth-app#readme",
"importSort": {
".hbs, .js, .jsx": {
"parser": "babylon",
"style": "module"
},
".ts, .tsx": {
"parser": "typescript",
"style": "module"
}
},
"keywords": [
"ethers",
"ethereum",
"react",
"vue",
"web3",
"yarn"
],
"license": "MIT",
"main": "./dist/index.js",
"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/",
"clean": "shx rm -rf ./coverage ./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",
"prepublishOnly": "pinst --disable",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx,json,md,sol,ts,tsx}\"",
"prettier:check": "prettier --check --config .prettierrc \"**/*.{js,json,jsx,md,sol,ts,tsx}\"",
"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"
}
}