forked from guix77/react-blockcerts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.43 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
{
"name": "react-blockcerts",
"version": "0.9.5",
"description": "React component to display and verify a BlockCerts certificate.",
"main": "dist/index.js",
"scripts": {
"test": "standard",
"start": "webpack-dev-server --mode development",
"transpile": "babel src -d dist --copy-files",
"prepublishOnly": "yarn run transpile",
"build": "webpack --mode production",
"deploy": "gh-pages -d examples/dist",
"publish-demo": "yarn run build && yarn run deploy"
},
"repository": "https://github.com/guix77/react-blockcerts.git",
"author": "Guillaume Duveau <[email protected]>",
"license": "MIT",
"dependencies": {
"@blockcerts/cert-verifier-js": "^3.4.0",
"@material-ui/core": "^4.6.1",
"@material-ui/icons": "^4.5.1",
"react-json-view": "^1.19.1",
"react-timestamp": "^4.4.0"
},
"devDependencies": {
"@babel/cli": "^7.7.0",
"@babel/core": "^7.7.2",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.7.1",
"@babel/preset-react": "^7.7.0",
"babel-loader": "^8.0.6",
"css-loader": "^0.28.11",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"standard": "^14.3.1",
"style-loader": "^0.21.0",
"webpack": "^4.12.0",
"webpack-cli": "^3.0.6",
"webpack-dev-server": "^3.1.4"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
}
}