forked from antoinejaussoin/retro-board
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.72 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.72 KB
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
{
"name": "retro-board",
"version": "2.2.1",
"description": "An agile retrospective board - Powering www.retrospected.com",
"private": true,
"workspaces": [
"retro-board-*"
],
"scripts": {
"test": "yarn build-common && cd retro-board-app && yarn test",
"ci-test": "CI=true yarn test",
"clean": "del ./retro-board-*/yarn.lock && del ./yarn.lock && del ./retro-board-*/node_modules && del ./node_modules",
"start-ui": "yarn build-common && cd retro-board-app && yarn start",
"start-server": "cd retro-board-server && yarn start && cd ..",
"start-server-production": "yarn migrate && cd ./retro-board-server/dist/src && node index.js",
"build-common": "cd retro-board-common && yarn build && cd ..",
"build-ui": "yarn build-common && cd retro-board-app && yarn build && cd ..",
"build-server": "cd retro-board-server && yarn build && cd ..",
"build": "yarn build-ui && yarn build-server",
"start": "yarn build-common && yarn start-server & yarn start-ui",
"migrate": "cd retro-board-server && yarn migrate && cd .."
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinejaussoin/retro-board.git"
},
"keywords": [
"agile",
"retrospective",
"board",
"react hooks",
"react",
"universal",
"socket.io",
"styled-components",
"SPA",
"single page application",
"typescript",
"docker",
"docker-compose",
"postgres"
],
"author": "Antoine Jaussoin",
"license": "GNU GPLv3",
"bugs": {
"url": "https://github.com/antoinejaussoin/retro-board/issues"
},
"homepage": "http://www.retrospected.com",
"dependencies": {
"@types/node": "^12.12.5",
"del-cli": "^3.0.0",
"typescript": "3.7.2"
}
}