-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
62 lines (62 loc) · 1.93 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
{
"name": "@alethio/explorer-plugin-opensea",
"publisher": "aleth.io",
"pluginName": "opensea",
"version": "1.0.4",
"description": "Alethio Explorer plugin that provides OpenSea integration, such as non-fungible tokens list for accounts.",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "npm run clean && npm run build-js-prod",
"build-dev": "npm run clean && npm run build-js-dev",
"watch": "webpack-runner --config=./webpack.config.dev.js --watch",
"clean": "rimraf ./dist",
"build-js-prod": "webpack --config=./webpack.config.prod.js",
"build-js-dev": "webpack --config=./webpack.config.dev.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "npm run build"
},
"author": "aleth.io",
"license": "UNLICENSED",
"repository": {
"type": "git",
"url": "https://github.com/Alethio/explorer-plugin-opensea"
},
"engines": {
"@alethio/cms": "^1.0.0-beta.7"
},
"devDependencies": {
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/webpack-env": "^1.13.0",
"file-loader": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^0.4.15",
"mobx": "^5.9.4",
"mobx-react": "^5.4.3",
"plugin-api": "npm:@alethio/cms-plugin-api@^1.0.0-beta.7",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"rimraf": "^2.6.3",
"source-map-loader": "^0.2.3",
"source-map-support": "^0.4.14",
"styled-components": "^3.4.2",
"ts-loader": "^4.4.2",
"tslib": "^1.9.3",
"tslint": "^5.15.0",
"typescript": "^3.4.1",
"typescript-styled-plugin": "^0.14.0",
"typescript-tslint-plugin": "^0.3.1",
"uglifyjs-webpack-plugin": "^1.2.5",
"url-loader": "^2.1.0",
"webpack": "^4.29.6",
"webpack-cli": "^3.1.2",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/ui": "^1.0.0-beta.11",
"@puzzl/browser": "^1.0.0-beta.2",
"@puzzl/core": "^1.0.0-beta.1"
}
}