-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.04 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
{
"name": "night-club",
"version": "0.0.1",
"description": "play card games online with your friends",
"main": "index.js",
"workspaces": [
"client",
"server"
],
"scripts": {
"docker:compose": "docker-compose up -d",
"client:dev": "npm run dev --workspace=client",
"server:dev": "wait-on tcp:6379 && npm run start:dev --workspace=server",
"start": "concurrently 'npm:docker:compose' 'npm:server:dev' 'npm:client:dev'",
"stop": "docker-compose down",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JacobSNGoodwin/ranker.git"
},
"keywords": [
"ts",
"react",
"nestjs",
"socketjs"
],
"author": "Jacob Goodwin",
"license": "ISC",
"bugs": {
"url": "https://github.com/JacobSNGoodwin/ranker/issues"
},
"homepage": "https://github.com/JacobSNGoodwin/ranker#readme",
"devDependencies": {
"@types/webpack": "^5.28.0",
"concurrently": "^7.0.0",
"prettier": "^2.5.1",
"wait-on": "^6.0.1"
}
}