-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
87 lines (87 loc) · 2.91 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
80
81
82
83
84
85
86
87
{
"name": "@alethio/explorer-core-plugins",
"version": "1.0.0",
"private": true,
"description": "Alethio Explorer core plugins",
"main": "",
"scripts": {
"build": "npm run clean && npm run build-js-prod && npm run check-prod-bundle-size",
"build-dev": "npm run clean && npm run build-js-dev",
"check-prod-bundle-size": "bundlesize -f \"packages/*/dist/index.js\" -s 450kB -c none",
"watch": "webpack-runner --config=./webpack.config.dev.js --watch",
"clean": "rimraf ./packages/*/dist",
"build-js-prod": "webpack --config=./webpack.config.prod.js",
"build-js-dev": "webpack --config=./webpack.config.dev.js",
"test": "mocha",
"test-coverage": "nyc npm test",
"prepublishOnly": "npm test && npm run build"
},
"author": "Alexandru Ciuca <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/explorer-core-plugins"
},
"devDependencies": {
"@types/fontfaceobserver": "0.0.6",
"@types/mocha": "^2.2.40",
"@types/node": "^8.10.18",
"@types/qrcode": "^1.2.0",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/recharts": "^1.1.14",
"@types/vis": "^4.21.7",
"@types/webpack-env": "^1.13.0",
"bundlesize": "github:siddharthkp/bundlesize#brotli-optional",
"css-loader": "^1.0.0",
"esm": "^3.2.25",
"file-loader": "^1.1.11",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"husky": "^1.0.0-rc.9",
"lerna": "^3.14.1",
"mocha": "^6.1.4",
"monaco-editor-webpack-plugin": "github:mikegreiling/monaco-editor-webpack-plugin#mg-fix-public-path",
"nyc": "^14.1.1",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.8",
"rimraf": "^2.6.2",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.14",
"style-loader": "^0.23.0",
"ts-loader": "^4.4.2",
"ts-node": "^8.2.0",
"tsconfig-paths": "^3.8.0",
"tslib": "^1.10.0",
"tslint": "^5.11.0",
"typemoq": "^2.1.0",
"typescript": "^3.4.1",
"typescript-plugin-styled-components": "^1.0.0",
"typescript-styled-plugin": "^0.10.0",
"typescript-tslint-plugin": "^0.1.0",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^1.0.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/explorer-ui": "^1.0.0-beta.2",
"@alethio/ui": "^1.1.1",
"@puzzl/browser": "^1.0.0-beta.1",
"@puzzl/core": "^1.0.0-beta.1",
"bignumber.js": "^8.0.1",
"deepstream.io-client-js": "^2.3.0",
"fontfaceobserver": "^2.0.13",
"identicon.js": "^2.3.2",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"monaco-editor": "^0.15.6",
"qrcode": "^1.2.2",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-graph-vis": "^1.0.2",
"react-minimal-pie-chart": "^3.0.2",
"recharts": "^1.1.0",
"styled-components": "^3.4.2",
"web3": "^1.0.0-beta.55"
}
}