This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
53
54
55
56
57
58
59
60
61
62
{
"name": "@tanndev/initiate",
"version": "1.0.0",
"private": true,
"description": "Combat initiative tracker for roleplaying games",
"main": "server/app.js",
"scripts": {
"start": "node .",
"test": "echo \"Error: no test specified\" && exit 1",
"speccy": "speccy lint server/api/v1/spec.yml",
"all": "concurrently \"npm start\" \"npm run client\"",
"client": "cd client && npm start",
"client-install": "cd client && npm install",
"client-build": "cd client && npm run build",
"client-test": "cd client && npm test",
"services": "docker-compose -f docker-compose.yml -f docker-compose.development.yml up -d redis couch",
"docker-compose": "docker-compose -f docker-compose.yml -f docker-compose.development.yml up -d --build",
"docker-build": "docker build -t jftanner/initiate .",
"docker-push": "docker push jftanner/initiate"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tanndev/initiate.git"
},
"keywords": [
"initiative",
"D&D",
"RPG",
"roleplaying",
"game",
"combat",
"tracker",
"turn",
"round"
],
"author": "James Tanner <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/tanndev/initiate/issues"
},
"homepage": "https://github.com/tanndev/initiate#readme",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"chance": "^1.0.18",
"connect-redis": "^3.4.1",
"express": "^4.17.1",
"express-session": "^1.16.2",
"http-errors": "^1.7.2",
"morgan": "^1.9.1",
"nanoid": "^2.0.3",
"redis": "^2.8.0",
"socket.io": "^2.2.0",
"swagger-ui-express": "^4.0.6",
"yamljs": "^0.3.0"
},
"devDependencies": {
"concurrently": "^4.1.0",
"speccy": "^0.10.1"
}
}