-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.99 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.99 KB
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
{
"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 .",
"lint:fix": "npm run lint -- --fix",
"flow": "flow",
"flow:watch": "watch 'flow' . --wait=1 --ignoreDirectoryPattern=/doc/",
"lint:watch": "watch 'npm run lint:fix' . --wait=1",
"test": "npm run lint && npm run flow"
},
"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",
"url-loader": "^1.1.2",
"webpack": "^4.31.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.5"
},
"dependencies": {
"@bitconch/bitconch-web3j": "1.1.2",
"@solana/web3.js": "0.14.17",
"babel-cli": "^6.26.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-runtime": "^6.26.0",
"body-parser": "^1.18.3",
"copy-to-clipboard": "^3.0.8",
"css-loader": "^1.0.0",
"event-emitter": "^0.3.5",
"express": "^4.16.3",
"flow-bin": "^0.81.0",
"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"
}
}