This repository was archived by the owner on Apr 21, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.46 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.46 KB
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": "dsa-sdk",
"version": "1.5.15",
"description": "DSA Starter Kit for building DeFi dapps",
"main": "build/dsa.min.js",
"scripts": {
"build": "webpack --mode production",
"build-dev": "webpack --mode development --config webpack.config.dev.js",
"dev-server": "webpack-dev-server --mode development --config webpack.config.dev.js",
"prepare": "npm run build",
"trypublish": "npm publish || true",
"postversion": "git push && git push --tags && npm publish && npm run open-releases",
"open-releases": "open \"$(node -e 'console.log(`${require(\"./package.json\").repository}/releases`)')\""
},
"repository": {
"type": "git",
"url": "https://github.com/instadapp/dsa-sdk"
},
"author": "INSTADAPP LABS LLC <info@instadapp.io>",
"license": "MIT",
"keywords": [
"ethereum",
"defi",
"dapps"
],
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.0",
"dotenv": "^8.2.0",
"html-webpack-plugin": "^4.2.0",
"prettier": "^2.0.5",
"prettier-webpack-plugin": "^1.2.0",
"web3": "^1.2.8",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"axios": "^0.19.2",
"semver": "^7.3.2"
}
}