-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1 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
{
"name": "sit-down-and-play-meccg",
"version": "1.0.0",
"description": "Sit down and play MECCG",
"engines": {
"node": "12.x"
},
"main": "index.js",
"scripts": {
"start": "node index.js",
"local": "PORT=8080 IMAGE_PATH=/data/card-images CARDURL=data/cards.json MAPPOS=data/map-positions-example.json node index.js",
"play": "PORT=8080 IMAGE_PATH=/data/card-images CARDURL=data-local/cards.json MAPPOS=data-local/map-positions.json DECKLISTFOLDER=data-local/decks node index.js",
"build_xmls": "node index-generate-from-xmls.js",
"test_clear": "jest --clearCache",
"test": "jest --config ./jest.config.json"
},
"dependencies": {
"cookie-parser": "^1.4.5",
"express": "^4.17.3",
"helmet": "^4.6.0",
"socket.io": "^4.5.1"
},
"devDependencies": {
"jest": "^27.2.1"
},
"repository": {
"type": "git",
"url": "https://github.com/heroku/node-js-getting-started"
},
"keywords": [
"node",
"heroku",
"express"
],
"license": "MIT"
}