forked from solana-labs/obsolete-dontuse-example-webwallet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
61 lines (61 loc) · 1.72 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
{
"name": "webapp",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "babel-node server.js",
"build": "webpack --mode=production",
"builddev": "webpack --mode=development",
"postinstall": "npm run build",
"dev": "webpack-dev-server --config ./webpack.config.js --mode development",
"lint": "eslint .",
"lintf": "eslint . --fix"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-eslint": "^8.2.6",
"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": "^5.3.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.1",
"eslint-plugin-react": "^7.10.0",
"react-hot-loader": "^4.3.4",
"webpack": "^4.16.5",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@solana/web3.js": "0.0.5",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"bs58": "^4.0.1",
"copy-to-clipboard": "^3.0.8",
"css-loader": "^1.0.0",
"event-emitter": "^0.3.5",
"express": "^4.16.3",
"jayson": "^2.0.6",
"joi": "^13.6.0",
"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.32.1",
"react-dom": "^16.4.2",
"sha256": "^0.2.0",
"style-loader": "^0.22.1",
"tweetnacl": "^1.0.0"
}
}