forked from Instadapp/dsa-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.33 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
{
"name": "dsa-sdk",
"version": "1.2.14",
"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"
},
"repository": {
"type": "git",
"url": "https://github.com/instadapp/dsa-sdk"
},
"author": "INSTADAPP LABS LLC <[email protected]>",
"license": "MIT",
"keywords": [
"ethereum",
"defi",
"dapps"
],
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.0",
"babel-loader": "^8.1.0",
"babel-preset-minify": "^0.5.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.4.2",
"dotenv": "^8.2.0",
"file-loader": "^6.0.0",
"html-webpack-plugin": "^4.2.0",
"prettier": "^2.0.4",
"prettier-webpack-plugin": "^1.2.0",
"style-loader": "^1.1.3",
"url-loader": "^4.0.0",
"web3": "^1.2.6",
"webpack": "^4.42.1",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.10.3"
}
}