-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 3.16 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
77
78
79
{
"name": "Provenator",
"version": "0.0.5",
"description": "Provenator Application",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/glowkeeper/Provenator.git"
},
"scripts": {
"generate": "cd ./blockchain && mkdir -p ./build/contracts && touch ./build/contracts/fooBar.json && rm ./build/contracts/*json && truffle compile --all",
"develMigrate": "cd ./blockchain && truffle migrate --network development",
"rinkebyMigrate": "cd ./blockchain && truffle migrate --network rinkeby",
"compile": "./node_modules/.bin/webpack --config ./webpack.dev.js --mode development && rm ./build/app.js && rm ./build/app.js.map",
"watch": "./node_modules/.bin/webpack --config ./webpack.dev.js --watch --mode development",
"dev": "./node_modules/.bin/webpack --config ./webpack.dev.js --mode development",
"prod": "./node_modules/.bin/webpack --config ./webpack.prod.js --mode production && rm ./build/app.js",
"start": "http-server -p 8082 build/"
},
"author": "Steve Huckle",
"license": "LGPL-3.0",
"dependencies": {
"antd": "^4.5.4",
"dayjs": "^1.8.33",
"js-sha3": "^0.8.0",
"prop-types": "^15.7.2",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-file-reader-input": "^2.0.0",
"react-markdown": "^4.3.1",
"react-router-dom": "^5.2.0",
"web3": "^1.2.11"
},
"devDependencies": {
"@babel/core": "^7.11.1",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-decorators": "^7.10.5",
"@babel/plugin-proposal-do-expressions": "^7.10.4",
"@babel/plugin-proposal-export-default-from": "^7.10.4",
"@babel/plugin-proposal-export-namespace-from": "^7.10.4",
"@babel/plugin-proposal-function-bind": "^7.10.5",
"@babel/plugin-proposal-function-sent": "^7.10.4",
"@babel/plugin-proposal-json-strings": "^7.10.4",
"@babel/plugin-proposal-logical-assignment-operators": "^7.11.0",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-numeric-separator": "^7.10.4",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/plugin-proposal-pipeline-operator": "^7.10.5",
"@babel/plugin-proposal-throw-expressions": "^7.10.4",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-import-meta": "^7.10.4",
"@babel/preset-env": "^7.11.0",
"@babel/preset-react": "^7.10.4",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.1.0",
"babel-plugin-import": "^1.13.0",
"clean-webpack-plugin": "^3.0.0",
"css-loader": "^3.6.0",
"file-loader": "^6.0.0",
"html-inline-css-webpack-plugin": "^1.8.1",
"html-webpack-plugin": "^4.3.0",
"less": "^3.12.2",
"less-loader": "^6.2.0",
"less-vars-to-js": "^1.3.0",
"mini-css-extract-plugin": "^0.9.0",
"mocha": "^8.1.1",
"should": "^13.2.3",
"style-loader": "^1.2.1",
"terser-webpack-plugin": "^3.1.0",
"url-loader": "^4.1.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-merge": "^4.2.2"
},
"bugs": {
"url": "https://github.com/glowkeeper/Provenator/issues"
},
"homepage": "https://github.com/glowkeeper/Provenator#readme"
}