-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
46 lines (46 loc) · 1.13 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
{
"name": "open-enterprise-stats",
"version": "0.1.0",
"private": true,
"description": "Stats about Aragon organizations created with Autark's Open Enterprise template",
"repository": "https://github.com/AutarkLabs/open-enterprise-stats",
"contributors": [
"Chad Ostrowski <[email protected]> (https://chadoh.com)"
],
"license": "MIT",
"scripts": {
"dev": "parcel src/index.html",
"build": "parcel build src/index.html && html-inline -i dist/index.html -o docs/index.html -b dist",
"test": "jest"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js"
],
"testRegex": "^.+\\.test\\.ts$"
},
"husky": {
"hooks": {
"pre-commit": "npm run build && git add docs/index.html"
}
},
"devDependencies": {
"@types/jest": "^24.0.25",
"html-inline": "^1.2.0",
"husky": "^3.1.0",
"jest": "^24.9.0",
"parcel-bundler": "^1.12.4",
"posthtml-include": "^1.3.2",
"sass": "^1.24.0",
"ts-jest": "^24.2.0",
"typescript": "^3.7.4"
},
"dependencies": {
"eth-provider": "^0.2.5",
"web3": "^1.2.4"
}
}