-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
96 lines (96 loc) · 3.28 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
88
89
90
91
92
93
94
95
96
{
"name": "peersocial.io",
"version": "0.0.2",
"description": "peersocial dapp",
"scripts": {
"build": "npm run build-pro",
"build-pro": "cross-env APP_ENV=production ./run-build.sh",
"build-dev": "cross-env APP_ENV=development ./run-build.sh",
"build-default": "cross-env PSIO_BUILD=core,app NODE_ENV=$APP_ENV OUT_DIR=./build webpack --devtool source-map --config webpack.config.js",
"build-app": "cross-env PSIO_BUILD=app NODE_ENV=$APP_ENV OUT_DIR=./build webpack --devtool source-map --config webpack.config.js",
"build-core": "cross-env PSIO_BUILD=core NODE_ENV=$APP_ENV OUT_DIR=./build webpack --devtool source-map --config webpack.config.js",
"start": "node ./server.js",
"bash": "bash",
"heroku-prebuild": "echo This runs before Heroku installs dependencies.",
"heroku-postbuild": "echo This runs after Heroku installs dependencies, but before Heroku prunes and caches dependencies. && npm run build",
"heroku-cleanup": "echo This runs after Heroku prunes and caches dependencies.",
"docs-build": "cross-env ./build_docs.sh"
},
"heroku-run-build-script": true,
"main": "./cli.js",
"keywords": [
"peersocial"
],
"author": "peersocial",
"license": "MIT",
"dependencies": {
"@babel/core": "^7.18.0",
"@babel/plugin-transform-modules-amd": "^7.18.6",
"@babel/plugin-transform-modules-commonjs": "^7.18.6",
"@babel/preset-env": "^7.18.0",
"@babel/preset-react": "^7.17.12",
"@babel/standalone": "^7.18.4",
"@fortawesome/fontawesome-free": "^6.1.1",
"@trustcrypto/node-onlykey": "github:bmatusiak/node-onlykey",
"@vue/cli": "^5.0.4",
"ace": "github:ajaxorg/ace#57ded0911fc5d001636bdd0edf387c629a5f55f4",
"amd-loader": "^0.0.8",
"amdefine": "^1.0.1",
"aws-sdk": "^2.1123.0",
"babel-loader": "^8.2.5",
"body-parser": "^1.20.0",
"browserify": "^17.0.0",
"clean-webpack-plugin": "^3.0.0",
"client-oauth2": "^4.3.3",
"cookie-parser": "^1.4.6",
"copy-webpack-plugin": "^6.0.3",
"cross-env": "^7.0.2",
"crypto-browserify": "^3.12.0",
"css-loader": "^6.7.1",
"edit-package-json": "^0.4.0",
"elliptic": "^6.5.4",
"eslint": "^8.19.0",
"express": "*",
"fabric": "github:fabricjs/fabric.js#v521",
"gun": "github:amark/gun#ac52811880cb8b7f4925c19cc459cdd7d9a9e848",
"html-webpack-plugin": "^5.5.0",
"ifdef-loader": "^2.3.2",
"jsdoc-to-markdown": "^7.1.1",
"minify": "^9.1.0",
"minimist": "^1.2.5",
"node-forge": "^1.3.1",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"raw-loader": "^4.0.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"requirejs": "^2.3.6",
"socket.io": "^4.4.1",
"stream-browserify": "^3.0.0",
"style-loader": "^3.3.1",
"vue": "^3.2.35",
"vue-loader": "^17.0.0",
"vue-template-compiler": "^2.6.14",
"webpack": "^5.72.0",
"webpack-cli": "^4.9.2",
"xterm": "^4.19.0",
"xterm-addon-fit": "^0.5.0",
"xterm-readline": "^1.0.7"
},
"engines": {
"node": "16.x"
},
"contributors": [
{
"name": "Bradley Matisiak",
"email": "bmatusiak@gmail.com",
"url": "https://github.com/bmatusiak"
}
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/PeerSocial-io"
}
]
}