generated from ecadlabs/taquito-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
48 lines (48 loc) · 1.08 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
{
"name": "the-best-dapp-ever",
"version": "1.0.0",
"description": "Gets a blance for a Tezos address",
"main": "index.js",
"scripts": {
"watch": "parcel src/index.html",
"clean": "rm -rf dist",
"build": "npm run clean && parcel build ./src/index.html",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/michaelkernaghan/BestDappEver.git"
},
"keywords": [
"tezos",
"taquito",
"ts",
"typescript",
"dapp",
"blockchain"
],
"author": "ECAD Labs Inc.",
"license": "MIT",
"devDependencies": {
"@types/jquery": "^3.5.5",
"jest-puppeteer": "^5.0.4",
"jquery": "^3.5.1",
"mocha": "^9.0.2",
"parcel-bundler": "^1.12.4",
"puppeteer": "^1.13.0",
"typescript": "^4.1.5"
},
"dependencies": {
"@taquito/taquito": "^8.0.3-beta.0",
"axios": "^0.25.0",
"follow-redirects": "^1.14.8",
"glob-parent": "^6.0.2",
"nanoid": "^3.2.0",
"node-forge": "^1.2.1",
"nth-check": "^2.0.1",
"postcss": "^8.4.6"
},
"optionalDependencies": {
"fsevents": "^2.3.2"
}
}