-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.97 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.97 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "osuni",
"version": "0.0.1",
"description": "The World's Academic & Career Development Ledger",
"main": "truffle.js",
"directories": {
"test": "test"
},
"dependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-lodash": "^3.2.11",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"babel-runtime": "^6.26.0",
"bip39": "^2.5.0",
"buffer": "^5.1.0",
"cross-env": "^5.0.5",
"eth-ecies": "^1.0.1",
"eth-lightwallet": "^3.0.1",
"ethereumjs-tx": "^1.3.7",
"ethereumjs-util": "^5.1.5",
"ethereumjs-wallet": "^0.6.0",
"ganache-cli": "^6.0.3",
"history": "^4.7.2",
"ipfs-api": "^22.2.4",
"keythereum": "^1.0.2",
"node-file-hash": "^1.0.1",
"prop-types": "^15.6.0",
"qrcode.react": "^0.8.0",
"rc-slider": "^8.6.1",
"react": "^15.6.2",
"react-avatar-editor": "^11.0.4",
"react-dom": "^15.6.2",
"react-dropzone": "^5.0.1",
"react-quill": "^1.2.7",
"react-redux": "^5.0.6",
"react-router": "^4.2.0",
"react-router-dom": "^4.2.2",
"redux": "^3.7.2",
"redux-background": "^0.9.2",
"redux-thunk": "^2.2.0",
"semantic-ui": "^2.3.1",
"semantic-ui-calendar": "0.0.8",
"semantic-ui-react": "^0.74.2",
"truffle-contract": "^3.0.2",
"truffle-ledger-provider": "0.0.3",
"web3": "^1.0.0-beta.35",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.9"
},
"devDependencies": {
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-register": "^6.26.0",
"chai": "^4.1.2",
"css-loader": "^0.28.9",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.5.1",
"file-loader": "^1.1.6",
"gulp": "^3.9.1",
"mocha": "^5.0.5",
"node-sass": "^4.7.2",
"react-hot-loader": "^3.1.3",
"sass-loader": "^6.0.6",
"style-loader": "^0.19.1",
"url-loader": "^0.6.2",
"webpack-bundle-analyzer": "^3.0.2"
},
"scripts": {
"start": "webpack-dev-server --progress --inline --watch --hot --content-base ./public/",
"host": "webpack-dev-server --progress --inline --watch --hot --content-base ./public/ --host 192.168.1.212",
"watch": "webpack --progress --colors --watch",
"lint": "eslint src/",
"fix": "eslint --fix src/",
"analyze": "cross-env ANALYZE_ENV=true yarn build",
"analyze:production": "cross-env ANALYZE_ENV=true yarn build:production",
"build": "webpack",
"build:production": "cross-env NODE_ENV=production yarn build",
"testrpc": "echo 'WARN: use `npm run ganache`' && ganache-cli",
"ganache": "ganache-cli",
"test": "mocha --require babel-polyfill --require babel-register ./test/**/*.spec.js"
},
"repository": "git@git.codeideo.com:edu-ico/platform.git",
"author": "Rechained Ltd.",
"license": "MIT"
}