forked from octopus-network/octopus-relay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.9 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
{
"name": "octopus-relay",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:web": "rm -rf dist && mkdir -p dist && NODE_ENV=production webpack --config webpack.config.js",
"build:contract:debug": "node contract/compile.js --debug",
"dev:deploy:contract": "near dev-deploy",
"deploy:contract": "near deploy",
"prestart": "npm run build:contract:debug && npm run dev:deploy:contract",
"start": "echo The app is starting! It will automatically open in your browser when ready && env-cmd -f ./neardev/dev-account.env webpack --config webpack.config.js",
"dev": "nodemon --watch contract/src -e rs --exec \"npm run start\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@craco/craco": "^6.0.0",
"@types/react": "^17.0.0",
"babel-loader": "^8.2.2",
"css-loader": "^5.0.1",
"env-cmd": "^10.1.0",
"file-loader": "^6.2.0",
"html-webpack-plugin": "^4.5.1",
"less": "^4.1.0",
"less-loader": "^7.3.0",
"mini-css-extract-plugin": "^1.3.4",
"near-cli": "^1.5.2",
"nodemon": "^2.0.7",
"shelljs": "^0.8.4",
"style-loader": "^2.0.0",
"typescript": "^4.1.3",
"url-loader": "^4.1.1",
"webpack": "^4.4.0",
"webpack-cli": "^4.4.0",
"webpack-dev-server": "^3.11.2",
"webpack-merge": "^5.7.3",
"webpack-plugin-serve": "^1.2.1"
},
"dependencies": {
"@babel/core": "^7.12.10",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.11",
"@babel/preset-react": "^7.12.10",
"@babel/preset-typescript": "^7.12.7",
"@babel/runtime": "^7.12.5",
"antd": "^4.10.3",
"big.js": "^6.0.3",
"history": "^5.0.0",
"near-api-js": "^0.36.2",
"react": "^17.0.1",
"react-copy-to-clipboard": "^5.0.3",
"react-dom": "^17.0.1",
"react-router": "^6.0.0-alpha.5",
"react-router-dom": "^6.0.0-alpha.5",
"styled-components": "^5.2.1"
}
}