mirror of
https://github.com/darkwire/darkwire.io.git
synced 2025-07-18 02:44:01 +00:00
31 lines
829 B
JSON
31 lines
829 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/dist' yarn start",
|
|
"setup": "yarn && cd client && yarn && cd ../server && yarn",
|
|
"dev": "concurrently 'cd client && yarn dev' 'cd server && yarn dev'",
|
|
"test": "concurrently 'cd client && yarn coverage' 'cd server && yarn test --watch=false'",
|
|
"lint": "cd server && yarn lint && cd ../client && yarn lint"
|
|
},
|
|
"devDependencies": {
|
|
"concurrently": "^4.1.0"
|
|
}
|
|
}
|