forked from darkwire/darkwire.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 1001 Bytes
/
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
{
"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": "^8.2.2"
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}