forked from JACK-COM/reachduck
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.43 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
{
"name": "@jackcom/reachduck",
"version": "0.2.1",
"description": "A front-end helper for your DApp.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"homepage": "https://jack-com.github.io/reachduck/",
"files": [
"lib/**/*"
],
"keywords": [
"reachduck",
"@jackcom"
],
"author": "JACKCOM",
"license": "ISC",
"scripts": {
"bamp": "npm-auto-version && rm -rf package-lock.json node_modules/ && npm i && git add .",
"clean": "rm -rf dist/ lib/",
"build": "npm run clean && tsc",
"build:dev": "npm run clean && webpack --mode development",
"preview": "npm run build && npm pack && rm -rf *.tgz",
"test": "jest --watchAll",
"prepublish": "tsc"
},
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/JACK-COM/reachduck.git"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"algosdk": "^1.13.1",
"babel-jest": "^27.5.0",
"clean-webpack-plugin": "^4.0.0",
"copy-webpack-plugin": "^10.2.1",
"crypto-browserify": "^3.12.0",
"jest": "^27.4.7",
"npm-auto-version": "^1.0.0",
"prettier": "^2.5.1",
"stream-browserify": "^3.0.0",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.67.0",
"webpack-bundle-analyzer": "^4.5.0",
"webpack-cli": "^4.9.2"
}
}