-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path1package.json
59 lines (59 loc) · 2.11 KB
/
1package.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
{
"name": "kingpong",
"version": "1.0.0",
"description": "Pong Game",
"main": "index.js",
"workspaces": [
"backend",
"frontend"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write .",
"docker:db": "docker-compose -f docker-compose-dev.yml up db -d --build",
"docker:nginx": "docker-compose -f docker-compose-dev.yml up nginx -d --build",
"docker:minio": "docker-compose -f docker-compose-dev.yml up minio -d --build",
"docker:dev": "docker-compose -f docker-compose-dev.yml up -d --build",
"client:dev": "npm run dev --workspace=frontend",
"server:dev": "wait-on tcp:5432 && wait-on tcp:9000 && npm run start:dev --workspace=backend",
"server:debug": "wait-on tcp:5432 && npm run start:debug --workspace=backend",
"generate": "npm run generate --workspace=backend",
"start": "npm install && npm run generate && concurrently 'npm:docker:dev' 'npm:server:dev' 'npm:client:dev'",
"storybook": "npm install && npm run storybook --workspace=frontend",
"studio": "npm run studio --workspace=backend",
"migrate": "npm run migrate --workspace=backend",
"seed": "npm run seed --workspace=backend"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Archer-01/KingPong.git"
},
"keywords": [
"pong",
"web",
"game",
"nextjs",
"nestjs"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Archer-01/KingPong/issues"
},
"homepage": "https://github.com/Archer-01/KingPong#readme",
"devDependencies": {
"@types/minio": "^7.1.1",
"concurrently": "^8.2.1",
"prettier": "^3.0.3",
"wait-on": "^7.0.1"
},
"dependencies": {
"@chakra-ui/next-js": "^2.1.5",
"@chakra-ui/react": "^2.8.1",
"@emotion/react": "^11.11.1",
"@emotion/styled": "^11.11.0",
"framer-motion": "^10.16.4",
"react-bootstrap": "^2.9.1",
"react-icons": "^4.11.0"
}
}