mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 02:44:01 +00:00
* Add package.json and app.json * Add yarn engine * Remove extra build command * Force install dev deps * Add deploy button and update readme
24 lines
469 B
JSON
24 lines
469 B
JSON
{
|
|
"name": "darkwire.io",
|
|
"version": "2.0.0",
|
|
"description": "encrypted web chat",
|
|
"main": "index.js",
|
|
"repository": "https://github.com/darkwire/darkwire.io.git",
|
|
"engines": {
|
|
"yarn": "1.x"
|
|
},
|
|
"contributors": [
|
|
{
|
|
"name": "Daniel Seripap"
|
|
},
|
|
{
|
|
"name": "Alan Friedman"
|
|
}
|
|
],
|
|
"license": "MIT",
|
|
"scripts": {
|
|
"build": "./build.sh",
|
|
"start": "cd server && CLIENT_DIST_DIRECTORY='../client/build' yarn start"
|
|
}
|
|
}
|