-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "ranker-course",
"version": "0.0.1",
"description": "Make decisions with friends via ranked voting!",
"main": "index.js",
"workspaces": [
"client",
"server",
"shared"
],
"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'",
"storybook": "npm run storybook --workspace=client",
"stop": "docker-compose down",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/boomboxik/Rankr-app.git"
},
"keywords": [
"ts",
"react",
"nestjs",
"socketjs"
],
"author": "boomboxik",
"license": "ISC",
"bugs": {
"url": "https://github.com/boomboxik/Rankr-app/issues"
},
"homepage": "https://github.com/boomboxik/Rankr-app/blob/main/README.md",
"devDependencies": {
"@types/jest": "^29.5.6",
"@types/webpack": "^5.28.0",
"concurrently": "^8.2.1",
"prettier": "^3.0.3",
"wait-on": "^7.0.1"
},
"dependencies": {
"css": "^3.0.0",
"nestjs": "^0.0.1",
"react": "^17.0.2",
"redis": "^4.6.10",
"storybook": "^7.5.1",
"tailwindcss": "^3.3.5",
"wouter": "^2.12.1"
}
}