-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "create-wc-dapp",
"version": "1.1.6",
"description": "Bootstrap a WalletConnect integrated dapp with with one command",
"keywords": [
"create-wc-dapp",
"create wc dapp",
"boilerplate",
"WalletConnect",
"starter template"
],
"scripts": {
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch src --exec \"yarn dev\"",
"start": "node dist/src/index.js",
"build": "rm -rf dist && tsc",
"lint": "eslint . --fix",
"test": "jest",
"cleanup": "rm -rf my-wc-dapp*/",
"publish": "yarn build && npm publish --access=public"
},
"bin": {
"create-wc-dapp": "./dist/src/index.js"
},
"license": "MIT",
"dependencies": {
"@jest/globals": "^29.5.0",
"@tsconfig/node16": "^16.0.0",
"@types/cli-progress": "^3.11.0",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"@types/prompts": "^2.4.4",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"eslint": "^8.37.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.5.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"fs-extra": "^11.1.1",
"jest": "^29.5.0",
"open": "^9.1.0",
"picocolors": "^1.0.0",
"prettier": "^3.0.0",
"prompts": "^2.4.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.3"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/walletconnect/create-wc-dapp.git"
}
}