-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
101 lines (101 loc) · 3.65 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
97
98
99
100
101
{
"name": "hyperdao-dapp",
"version": "1.0.0",
"description": "EthLisbon hackathon project - web3 dapp to support interactions with Telegram and the HyperDAO bot",
"repository": {
"type": "git",
"url": "git+https://github.com/dkent600/hyperdao-dapp.git"
},
"author": "HyperDAO",
"license": "MIT",
"bugs": {
"url": "https://github.com/dkent600/hyperdao-dapp/issues"
},
"homepage": "./",
"scripts": {
"build": "cross-env DOTENV_CONFIG_PATH=.env.production NETWORK=mainnet webpack --env.production --extractCss",
"build-kovan": "cross-env DOTENV_CONFIG_PATH=.env.production NETWORK=kovan webpack --env.production --extractCss",
"build-rinkeby": "cross-env DOTENV_CONFIG_PATH=.env.production NETWORK=rinkeby webpack --env.production --extractCss",
"build-dev": "cross-env DOTENV_CONFIG_PATH=.env NETWORK=rinkeby webpack --env.development --extractCss",
"build-dev-mainnet": "cross-env DOTENV_CONFIG_PATH=.env NETWORK=mainnet webpack --env.development --extractCss",
"serve": "serve -s dist --listen=3333 --cors",
"serve-dev": "cross-env DOTENV_CONFIG_PATH=.env NETWORK=rinkeby webpack-dev-server --env.development",
"serve-dev-mainnet": "cross-env DOTENV_CONFIG_PATH=.env NETWORK=mainnet webpack-dev-server --env.development",
"start-dev": "cross-env DOTENV_CONFIG_PATH=.env NETWORK=rinkeby webpack-dev-server --env.development --open",
"analyze": "cross-env DOTENV_CONFIG_PATH=.env.production webpack --env.production --analyze",
"test": "au test",
"lint": "eslint --ext .ts ./src ./test",
"lint.fix": "npm run lint -- --fix"
},
"dependencies": {
"@metamask/detect-provider": "^1.2.0",
"@walletconnect/web3-provider": "^1.3.6",
"aurelia-animator-css": "^1.0.4",
"aurelia-bootstrapper": "^2.3.3",
"aurelia-dialog": "^2.0.0",
"aurelia-event-aggregator": "^1.0.3",
"aurelia-path": "^1.1.7",
"aurelia-typed-observable-plugin": "^0.4.2",
"axios": "^0.21.1",
"dompurify": "^2.2.9",
"ethers": "^5.3.0",
"moment-timezone": "^0.5.31",
"numeral": "^2.0.6",
"rxjs": "^6.6.3",
"tippy.js": "^6.2.7",
"web3modal": "^1.9.4"
},
"devDependencies": {
"@types/node": "^14.11.2",
"@types/webpack": "^4.41.22",
"@typescript-eslint/eslint-plugin": "^4.3.0",
"@typescript-eslint/parser": "^4.3.0",
"app-settings-loader": "^1.0.6",
"aurelia-cli": "^2.0.2",
"aurelia-loader-nodejs": "^1.1.0",
"aurelia-pal-nodejs": "^2.0.0",
"aurelia-testing": "^1.0.0",
"aurelia-webpack-plugin": "^4.0.0",
"babel-eslint": "^10.1.0",
"clean-webpack-plugin": "^3.0.0",
"copy-webpack-plugin": "^6.1.1",
"cross-env": "^7.0.3",
"css-loader": "^4.3.0",
"dotenv": "^8.2.0",
"duplicate-package-checker-webpack-plugin": "^3.0.0",
"eslint": "^7.10.0",
"eslint-plugin-rxjs": "^2.1.2",
"expose-loader": "^1.0.0",
"file-loader": "^6.1.0",
"fs-extra": "^9.0.1",
"glob": "^7.1.7",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"html-loader": "^1.3.1",
"html-webpack-plugin": "^4.5.0",
"istanbul-instrumenter-loader": "^3.0.1",
"json-loader": "^0.5.7",
"mini-css-extract-plugin": "^0.11.2",
"minimatch": "^3.0.4",
"node-sass": "^4.14.1",
"promise-polyfill": "^8.1.3",
"raw-loader": "^4.0.2",
"sass-loader": "^10.0.2",
"serve": "^11.3.2",
"style-loader": "^1.2.1",
"tree-kill": "^1.2.2",
"ts-loader": "^8.0.4",
"typescript": "^4.4.2",
"url-loader": "^4.1.0",
"webpack": "^4.44.2",
"webpack-bundle-analyzer": "^3.9.0",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
},
"engines": {
"node": ">=14.11.0"
},
"browser": {
"http": false
}
}