-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 2.05 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
{
"name": "totem-crowdloan-dapp",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"author": "Toufiqur R. Chowdhury",
"contributors": [
{
"name": "Toufiqur R. Chowdhury",
"email": "htr.letun@gmail.com"
}
],
"scripts": {
"build": "rm -rf dist && DIST_DIR='dist' DOT_ENV_PATH='.env' webpack --mode production",
"build-local": "rm -rf dist-local && DIST_DIR='dist-local' DOT_ENV_PATH='.env.local' webpack --mode development",
"build-staging": "rm -rf dist-staging && DIST_DIR='dist-staging' DOT_ENV_PATH='.env.staging' webpack --mode development",
"start": "DOT_ENV_PATH='.env.local' webpack-dev-server",
"start-https": "DOT_ENV_PATH='.env.local' webpack-dev-server --https",
"test": "echo \"No test specified\""
},
"dependencies": {
"@emotion/react": "^11.7.1",
"@emotion/styled": "^11.6.0",
"@mui/icons-material": "^5.2.5",
"@mui/material": "^5.2.7",
"@mui/styles": "^5.4.2",
"@polkadot/api": "^10.0.1",
"@polkadot/extension-dapp": "^0.45.1",
"@polkadot/util": "^11.0.1",
"@polkadot/util-crypto": "^11.0.1",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"prop-types": "^15.7.2",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react-router-dom": "^6.0.2",
"regenerator-runtime": "^0.13.9",
"rxjs": "^7.4.0",
"socket.io-client": "^4.6.1",
"styled-components": "^6.1.0",
"tweetnacl": "^1.0.3",
"web3-utils": "^1.6.1"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"babel-loader": "^8.2.3",
"copy-webpack-plugin": "^10.2.0",
"css-loader": "^6.9.0",
"dotenv-webpack": "^7.0.3",
"html-webpack-plugin": "^5.5.0",
"ignore-loader": "^0.1.2",
"lodash-webpack-plugin": "^0.11.6",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"webpack": "^5.64.1",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.5.0"
}
}