This repository was archived by the owner on Mar 25, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 508
/
Copy pathpackage.json
96 lines (96 loc) · 2.77 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
{
"name": "create-eth-app",
"description": "Create Ethereum-powered apps with one command",
"version": "1.6.3",
"bin": {
"create-eth-app": "./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": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/config-lerna-scopes": "^8.3.4",
"@jest/globals": "^26.6.1",
"@octokit/request": "^5.4.10",
"@types/cross-spawn": "^6.0.2",
"@types/fs-extra": "^9.0.1",
"@types/got": "9.6.2",
"@types/jest": "^26.0.15",
"@types/jest-when": "^2.7.2",
"@types/node": "^13.13.26",
"@types/prompts": "2.0.1",
"@types/tar": "4.0.3",
"@typescript-eslint/eslint-plugin": "^4.4.1",
"@typescript-eslint/parser": "^4.4.1",
"@vercel/ncc": "^0.24.1",
"chalk": "^3.0.0",
"commander": "^4.1.0",
"commitizen": "^4.2.1",
"cross-spawn": "^7.0.3",
"dir-compare": "^2.3.0",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"execa": "^4.0.3",
"fs-extra": "^9.0.1",
"got": "^10.4.0",
"handlebars": "^4.7.6",
"husky": "^4.3.0",
"jest": "26.6.1",
"jest-when": "^3.0.0",
"lerna": "^3.22.1",
"prettier": "2.x",
"promisepipe": "^3.0.0",
"prompts": "^2.3.0",
"shx": "^0.3.2",
"tar": "^6.0.5",
"tempy": "^1.0.0",
"ts-jest": "26.4.3",
"typescript": "^4.0.3",
"update-check": "^1.5.3",
"url-exist": "^2.0.2",
"validate-npm-package-name": "^3.0.0"
},
"files": [
"/dist"
],
"homepage": "https://github.com/paulrberg/create-eth-app#readme",
"keywords": [
"ethereum",
"react",
"vue",
"web3",
"workspaces",
"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:list-different",
"lint:ts": "eslint --config ./.eslintrc.yaml --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx,json,md,sol,ts,tsx}\"",
"prettier:list-different": "prettier --config .prettierrc --list-different \"**/*.{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"
}
}