-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 2.09 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
{
"name": "scorum-connect",
"version": "1.0.0",
"description": "Show your scorum accounts and store private keys for future transactions from 3rd party applications",
"main": "index.js",
"engines": {
"node": ">=10.0.0"
},
"scripts": {
"lint": "eslint --ext js,jsx app --ignore-pattern app/build",
"release": "npm-run-all update-version --parallel upload:*",
"upload:amo": "cd app && web-ext-submit",
"upload:cws": "cd app && webstore upload --auto-publish",
"update-version": "dot-json app/manifest.json version $TRAVIS_TAG",
"build:background": "parcel build app/background.js -d app/build/ -o background.js",
"watch:background": "parcel watch app/background.js -d app/build/ -o background.js --no-hmr",
"build:content": "parcel build app/content.js -d app/build/ -o content.js",
"watch:content": "parcel watch app/content.js -d app/build/ -o content.js --no-hmr",
"build:options": "parcel build app/options.js -d app/build/ -o options.js",
"build:popup": "parcel build app/popup.js -d app/build/ -o popup.js",
"watch:popup": "parcel watch app/popup.js -d app/build/ -o popup.js --no-hmr",
"build:all": "npm-run-all --parallel build:popup build:background build:options build:content",
"watch:example:webapp": "parcel examples/web-app/index.html",
"watch:example:extension": "parcel examples/extension/popup.html"
},
"author": "Andrew Avdeev",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/polyfill": "^7.4.3",
"@babel/preset-env": "^7.4.5",
"@babel/preset-react": "^7.0.0",
"babel-eslint": "^10.0.1",
"chrome-webstore-upload-cli": "^1.2.0",
"dot-json": "^1.0.3",
"eslint": "^5.16.0",
"eslint-plugin-react": "^7.12.4",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.3",
"sass": "^1.18.0",
"web-ext-submit": "^3.0.0"
},
"dependencies": {
"@scorum/scorum-js": "^2.10.0",
"@scorum/scorum-side-js": "^1.20.1",
"extensionizer": "^1.0.1",
"lodash": "^4.17.11",
"preact": "^8.4.2",
"redux-zero": "^5.0.2",
"webext-options-sync": "^0.15.5"
}
}