generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
80 lines (80 loc) · 1.89 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
{
"name": "govern",
"private": true,
"version": "1.0.0",
"description": "Dapp for Governance",
"scripts": {
"test": "ava",
"dev": "vite",
"build": "vite build",
"serve": "vite preview",
"pretest": "tsc",
"prebuild": "rimraf dist",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts,.js --fix",
"lint:format": "prettier --write '**/*.{ts,js,html,json,md,yml}'",
"prepare": "husky install"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"@aggre/ullr": "2.2.0",
"@devprotocol/util-ts": "2.2.1",
"@devprotocol/vote-count-resolver": "0.2.0",
"@metamask/detect-provider": "1.2.0",
"@walletconnect/web3-provider": "1.4.1",
"ethers": "5.6.1",
"lit": "2.2.1",
"markdown-it": "12.3.2",
"ramda": "0.28.0",
"rxjs": "7.5.5",
"web3modal": "1.9.5"
},
"devDependencies": {
"@ava/typescript": "3.0.1",
"@types/dotenv": "8.2.0",
"@types/markdown-it": "12.2.3",
"@types/node": "16.11.26",
"@types/ramda": "0.28.2",
"@types/sinon": "10.0.11",
"@typescript-eslint/eslint-plugin": "5.16.0",
"@typescript-eslint/parser": "5.16.0",
"ava": "4.1.0",
"browser-env": "3.3.0",
"dotenv": "16.0.0",
"eslint": "8.11.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-functional": "4.2.0",
"husky": "7.0.4",
"prettier": "2.6.0",
"rimraf": "3.0.2",
"sinon": "13.0.1",
"ts-mock-imports": "1.3.8",
"typescript": "4.6.2",
"vite": "2.8.6"
},
"resolutions": {
"@ethersproject/bignumber": "5.6.0"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
}
},
"require": [
"./_setup-browser-env.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/template-repos-ts.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/template-repos-ts/issues"
},
"homepage": "https://github.com/dev-protocol/template-repos-ts#readme"
}