This repository has been archived by the owner on Nov 28, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
76 lines (76 loc) · 2.3 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "webapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build": "webpack --mode=production",
"builddev": "webpack --mode=development",
"dev": "webpack-dev-server --config ./webpack.config.js --mode development",
"flow": "flow",
"flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
"lint": "npm run pretty && eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "watch 'npm run lint:fix' . --wait=1",
"postinstall": "npm run build",
"pretty": "prettier --write '{,src/**/}*.js'",
"start": "babel-node server.js",
"test": "npm run lint && npm run flow"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@svgr/webpack": "^5.0.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.0.1",
"babel-loader": "^7.1.5",
"babel-plugin-transform-function-bind": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-2": "^6.24.1",
"eslint": "^6.0.1",
"eslint-loader": "^4.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"mini-css-extract-plugin": "^0.11.0",
"optimize-css-assets-webpack-plugin": "^5.0.3",
"prettier": "^2.0.0",
"react-hot-loader": "^4.3.4",
"sass-loader": "^10.0.0",
"terser-webpack-plugin": "^4.0.0",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@solana/web3.js": "^0.71.0",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-runtime": "^6.26.0",
"bip39": "^3.0.2",
"body-parser": "^1.18.3",
"bs58": "^4.0.1",
"copy-to-clipboard": "^3.0.8",
"css-loader": "^4.0.0",
"event-emitter": "^0.3.5",
"express": "^4.16.3",
"flow-bin": "^0.132.0",
"jayson": "^3.0.1",
"joi": "^17.1.1",
"localforage": "^1.7.2",
"node-fetch": "^2.2.0",
"promisify": "0.0.3",
"prop-types": "^15.6.2",
"react": "^16.4.2",
"react-bootstrap": "~0.33.0",
"react-dom": "^16.4.2",
"sass": "^1.22.9",
"semver": "^7.0.0",
"sha256": "^0.2.0",
"style-loader": "^1.0.0",
"tweetnacl": "^1.0.0"
}
}