-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
54 lines (54 loc) · 2.16 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
{
"name": "OnlyKey-Web-apps",
"version": "3.0.0",
"private": true,
"description": "Securely encrypt, sign, decrypt and verify messages in your browser using Keybase PGP and OnlyKey",
"main": "src/app.js",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/onlykey/onlykey.github.io.git"
},
"author": "CryptoTrust <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"release": "cross-env NODE_ENV=production OUT_DIR=./ webpack -p --config webpack.config.js",
"dev": "cross-env NODE_ENV=development OUT_DIR=./dev webpack --devtool source-map --config webpack.config.js",
"dev-new": "cross-env NODE_ENV=development OUT_DIR=./dev-new webpack --devtool source-map --config webpack.config.js",
"dev-vir": "cross-env NODE_ENV=development OUT_DIR=./dev-vir webpack --devtool source-map --config webpack.config.js",
"build": "bash ./BUILD.sh",
"build-production": "bash ./BUILD-production.sh",
"build-release": "NODE_OPTIONS=\"--max-old-space-size=8192\" cross-env NODE_ENV=production OUT_DIR=./build webpack -p --config webpack.config.js",
"build-site": "cross-env NODE_ENV=development OUT_DIR=./build webpack --devtool source-map --config webpack.config.js",
"heroku-postbuild": "bash ./BUILD.sh 1",
"start": "node ./index.js"
},
"bugs": {
"url": "https://github.com/onlykey/onlykey.github.io/issues"
},
"homepage": "https://github.com/onlykey/onlykey.github.io#readme",
"devDependencies": {
"babel-minify-webpack-plugin": "^0.3.1",
"bootstrap": "^4.5.0",
"cross-env": "^7.0.2",
"csp-html-webpack-plugin": "^4.0.0",
"file-saver": "^2.0.2",
"html-webpack-plugin": "^4.3.0",
"jquery": "^3.5.1",
"jquery-ui": "^1.12.1",
"jszip": "^3.4.0",
"popper.js": "^1.16.1",
"randomcolor": "^0.5.4",
"raw-loader": "^4.0.1",
"superagent": "^5.2.2",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-subresource-integrity": "^1.4.1"
},
"dependencies": {
"express": "^4.17.1",
"gun": "^0.2020.520",
"node-onlykey": "github:trustcrypto/node-onlykey#4796f8e7a243024c754a6c44457a1e4a04553987",
"xterm": "^4.8.1",
"xterm-addon-fit": "^0.4.0"
}
}