-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "payts",
"publisher": "aleth.io",
"pluginName": "payts",
"version": "1.0.0",
"description": "<plugin_description>",
"main": "dist/index.js",
"scripts": {
"prepare": "npm run build",
"webpack": "webpack",
"start": "webpack-dev-server --open --mode development",
"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"
},
"author": "<publisher>",
"license": "UNLICENSED",
"devDependencies": {
"@types/isomorphic-fetch": "0.0.35",
"@types/react": "^16.8.12",
"@types/react-dom": "^16.8.3",
"@types/webpack-env": "^1.13.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.1",
"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",
"webpack": "^4.29.6",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.7.2",
"webpack-runner": "^3.1.0"
},
"dependencies": {
"@alethio/ui": "^1.0.0-beta.11",
"abi-decoder": "^2.0.1",
"moment": "^2.24.0",
"semantic-ui-react": "^0.87.3"
}
}